diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-08-24 20:18:58 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-08-24 20:18:58 +0000 |
commit | e1dd57c4f661cf753f3c5dc6892bfcdb37980bcb (patch) | |
tree | 09a963bdc42a9b3499599881baa5907280740c58 /lisp/progmodes/make-mode.el | |
parent | f2f850e775ebc75d339f11d747df949559017bfc (diff) | |
download | emacs-e1dd57c4f661cf753f3c5dc6892bfcdb37980bcb.tar.gz |
(makefile-mode-syntax-table): "]" is a close-paren.
Diffstat (limited to 'lisp/progmodes/make-mode.el')
-rw-r--r-- | lisp/progmodes/make-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |