summaryrefslogtreecommitdiff
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
commit6a99a3eade8aa01a10cfdbed06f6c4995476cd53 (patch)
tree53e48a3976c7516a84fef436323f67e47370c60a
parent6728a649bd6d7c9325ec8d868a179fa114358158 (diff)
downloademacs-6a99a3eade8aa01a10cfdbed06f6c4995476cd53.tar.gz
(makefile-mode-syntax-table): "]" is a close-paren.
-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)