diff options
| author | Richard M. Stallman | 1995-08-24 20:18:58 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-08-24 20:18:58 +0000 |
| commit | 6a99a3eade8aa01a10cfdbed06f6c4995476cd53 (patch) | |
| tree | 53e48a3976c7516a84fef436323f67e47370c60a | |
| parent | 6728a649bd6d7c9325ec8d868a179fa114358158 (diff) | |
| download | emacs-6a99a3eade8aa01a10cfdbed06f6c4995476cd53.tar.gz emacs-6a99a3eade8aa01a10cfdbed06f6c4995476cd53.zip | |
(makefile-mode-syntax-table): "]" is a close-paren.
| -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: | |||
| 335 | (modify-syntax-entry ?\( "() " makefile-mode-syntax-table) | 335 | (modify-syntax-entry ?\( "() " makefile-mode-syntax-table) |
| 336 | (modify-syntax-entry ?\) ")( " makefile-mode-syntax-table) | 336 | (modify-syntax-entry ?\) ")( " makefile-mode-syntax-table) |
| 337 | (modify-syntax-entry ?\[ "(] " makefile-mode-syntax-table) | 337 | (modify-syntax-entry ?\[ "(] " makefile-mode-syntax-table) |
| 338 | (modify-syntax-entry ?\] "([ " makefile-mode-syntax-table) | 338 | (modify-syntax-entry ?\] ")[ " makefile-mode-syntax-table) |
| 339 | (modify-syntax-entry ?\{ "(} " makefile-mode-syntax-table) | 339 | (modify-syntax-entry ?\{ "(} " makefile-mode-syntax-table) |
| 340 | (modify-syntax-entry ?\} "){ " makefile-mode-syntax-table) | 340 | (modify-syntax-entry ?\} "){ " makefile-mode-syntax-table) |
| 341 | (modify-syntax-entry ?\' "\" " makefile-mode-syntax-table) | 341 | (modify-syntax-entry ?\' "\" " makefile-mode-syntax-table) |