diff options
| author | Richard M. Stallman <rms@gnu.org> | 1994-01-06 09:59:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1994-01-06 09:59:12 +0000 |
| commit | 531b2a281794d5a31b9da95db0638a1c70fc5669 (patch) | |
| tree | c0fd9c8b3bfd4f4b37c120879d529e6fef4e359c /lisp | |
| parent | c44565c8369526ba9e95be4dc3d54b0ca90095cd (diff) | |
| download | emacs-531b2a281794d5a31b9da95db0638a1c70fc5669.tar.gz | |
(makefile-mode): Make comment-start, comment-end,
and comment-start-skip buffer-local.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/progmodes/make-mode.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index 28334b7489f..15db3f7d937 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el @@ -18,7 +18,7 @@ ;; So, for the meantime, this is not the default mode for makefiles. -;; $Id: makefile.el,v 1.9 1993/06/09 11:54:21 jimb Exp $ +;; $Id: makefile.el,v 1.10 1993/12/23 04:57:18 rms Exp rms $ ;; This file is part of GNU Emacs. @@ -418,6 +418,9 @@ makefile-special-targets-list: (make-variable-buffer-local 'makefile-has-prereqs) (make-variable-buffer-local 'makefile-need-target-pickup) (make-variable-buffer-local 'makefile-need-macro-pickup) + (make-local-variable 'comment-start) + (make-local-variable 'comment-end) + (make-local-variable 'comment-start-skip) (setq comment-start "#") (setq comment-end "") (setq comment-start-skip "#[ \t]*") |
