diff options
| author | Stefan Monnier | 2001-10-31 02:32:18 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-10-31 02:32:18 +0000 |
| commit | ed88dbcbdf2b693a3278d1bb40541766c3cfc5e7 (patch) | |
| tree | 45e275510789a5d98f5d21d7fa3400f3449d389a | |
| parent | 2f9c7108b15b2294f99a3d9c101be0568f7851b0 (diff) | |
| download | emacs-ed88dbcbdf2b693a3278d1bb40541766c3cfc5e7.tar.gz emacs-ed88dbcbdf2b693a3278d1bb40541766c3cfc5e7.zip | |
(autoconf-mode): Fix comment-start-skip.
| -rw-r--r-- | lisp/progmodes/autoconf.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/autoconf.el b/lisp/progmodes/autoconf.el index 69bf7aab775..51e23980ff8 100644 --- a/lisp/progmodes/autoconf.el +++ b/lisp/progmodes/autoconf.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;; Author: Dave Love <fx@gnu.org> | 5 | ;; Author: Dave Love <fx@gnu.org> |
| 6 | ;; Keywords: languages | 6 | ;; Keywords: languages |
| 7 | ;; $Revision: 1.1 $ | 7 | ;; $Revision: 1.2 $ |
| 8 | 8 | ||
| 9 | ;; This file is part of GNU Emacs. | 9 | ;; This file is part of GNU Emacs. |
| 10 | 10 | ||
| @@ -93,7 +93,7 @@ searching backwards at another AC_... command." | |||
| 93 | (set (make-local-variable 'defun-prompt-regexp) | 93 | (set (make-local-variable 'defun-prompt-regexp) |
| 94 | "^[ \t]*A[CM]_\\(\\sw\\|\\s_\\)+") | 94 | "^[ \t]*A[CM]_\\(\\sw\\|\\s_\\)+") |
| 95 | (set (make-local-variable 'comment-start) "dnl ") | 95 | (set (make-local-variable 'comment-start) "dnl ") |
| 96 | (set (make-local-variable 'comment-start-skip) "\\(\\<dnl\\|#\\) +") | 96 | (set (make-local-variable 'comment-start-skip) "\\(?:\\<dnl\\|#\\) +") |
| 97 | (set (make-local-variable 'font-lock-syntactic-keywords) | 97 | (set (make-local-variable 'font-lock-syntactic-keywords) |
| 98 | autoconf-font-lock-syntactic-keywords) | 98 | autoconf-font-lock-syntactic-keywords) |
| 99 | (set (make-local-variable 'font-lock-defaults) | 99 | (set (make-local-variable 'font-lock-defaults) |