diff options
| author | Roland Winkler | 2006-05-21 18:46:41 +0000 |
|---|---|---|
| committer | Roland Winkler | 2006-05-21 18:46:41 +0000 |
| commit | 9e2d84ccc8e567108ec35c8eef9cbf2eddeaccb6 (patch) | |
| tree | b0a293eeff02d643b46825aeb7ac84e5b27f8a39 | |
| parent | 88529506cc6877b5dcf95ff189da318c46cfb5fd (diff) | |
| download | emacs-9e2d84ccc8e567108ec35c8eef9cbf2eddeaccb6.tar.gz emacs-9e2d84ccc8e567108ec35c8eef9cbf2eddeaccb6.zip | |
(makefile-special-targets-list)
(makefile-macro-table, makefile-target-table): Mark as risky.
| -rw-r--r-- | lisp/progmodes/make-mode.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index 32d245f67f2..f8b7a1c6a91 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el | |||
| @@ -246,6 +246,7 @@ You will be offered to complete on one of those in the minibuffer whenever | |||
| 246 | you enter a \".\" at the beginning of a line in `makefile-mode'." | 246 | you enter a \".\" at the beginning of a line in `makefile-mode'." |
| 247 | :type '(repeat (list string)) | 247 | :type '(repeat (list string)) |
| 248 | :group 'makefile) | 248 | :group 'makefile) |
| 249 | (put 'makefile-special-targets-list 'risky-local-variable t) | ||
| 249 | 250 | ||
| 250 | (defcustom makefile-runtime-macros-list | 251 | (defcustom makefile-runtime-macros-list |
| 251 | '(("@") ("&") (">") ("<") ("*") ("^") ("+") ("?") ("%") ("$")) | 252 | '(("@") ("&") (">") ("<") ("*") ("^") ("+") ("?") ("%") ("$")) |
| @@ -670,9 +671,11 @@ The function must satisfy this calling convention: | |||
| 670 | 671 | ||
| 671 | (defvar makefile-target-table nil | 672 | (defvar makefile-target-table nil |
| 672 | "Table of all target names known for this buffer.") | 673 | "Table of all target names known for this buffer.") |
| 674 | (put 'makefile-target-table 'risky-local-variable t) | ||
| 673 | 675 | ||
| 674 | (defvar makefile-macro-table nil | 676 | (defvar makefile-macro-table nil |
| 675 | "Table of all macro names known for this buffer.") | 677 | "Table of all macro names known for this buffer.") |
| 678 | (put 'makefile-macro-table 'risky-local-variable t) | ||
| 676 | 679 | ||
| 677 | (defvar makefile-browser-client | 680 | (defvar makefile-browser-client |
| 678 | "A buffer in Makefile mode that is currently using the browser.") | 681 | "A buffer in Makefile mode that is currently using the browser.") |