From: Richard M. Stallman Date: Thu, 24 Aug 1995 20:18:58 +0000 (+0000) Subject: (makefile-mode-syntax-table): "]" is a close-paren. X-Git-Tag: emacs-19.34~2922 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6a99a3eade8aa01a10cfdbed06f6c4995476cd53;p=emacs.git (makefile-mode-syntax-table): "]" is a close-paren. --- diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index 172a25f6c3b..02693bb1607 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el @@ -335,7 +335,7 @@ The function must satisfy this calling convention: (modify-syntax-entry ?\( "() " makefile-mode-syntax-table) (modify-syntax-entry ?\) ")( " makefile-mode-syntax-table) (modify-syntax-entry ?\[ "(] " makefile-mode-syntax-table) - (modify-syntax-entry ?\] "([ " makefile-mode-syntax-table) + (modify-syntax-entry ?\] ")[ " makefile-mode-syntax-table) (modify-syntax-entry ?\{ "(} " makefile-mode-syntax-table) (modify-syntax-entry ?\} "){ " makefile-mode-syntax-table) (modify-syntax-entry ?\' "\" " makefile-mode-syntax-table)