From 33162739e60e7a813152881adc4709c0278a611d Mon Sep 17 00:00:00 2001 From: Corentin Peuvrel Date: Wed, 22 Apr 2015 22:29:14 +0200 Subject: [PATCH] Add a space after ifeq comma --- snippets/make.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/make.snippets b/snippets/make.snippets index 8b7cb01..8367b8f 100644 --- a/snippets/make.snippets +++ b/snippets/make.snippets @@ -26,6 +26,6 @@ snippet print print-%: ; @echo $*=$($*) # ifeq snippet ifeq - ifeq (${1:cond0},${2:cond1}) + ifeq (${1:cond0}, ${2:cond1}) ${0} endif