summaryrefslogtreecommitdiff
path: root/lisp/progmodes/make-mode.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-08-24 20:18:58 +0000
committerRichard M. Stallman <rms@gnu.org>1995-08-24 20:18:58 +0000
commite1dd57c4f661cf753f3c5dc6892bfcdb37980bcb (patch)
tree09a963bdc42a9b3499599881baa5907280740c58 /lisp/progmodes/make-mode.el
parentf2f850e775ebc75d339f11d747df949559017bfc (diff)
downloademacs-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.el2
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)