summaryrefslogtreecommitdiff
path: root/lisp/progmodes/make-mode.el
diff options
context:
space:
mode:
authorRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>2006-05-21 18:46:41 +0000
committerRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>2006-05-21 18:46:41 +0000
commit9e2d84ccc8e567108ec35c8eef9cbf2eddeaccb6 (patch)
treeb0a293eeff02d643b46825aeb7ac84e5b27f8a39 /lisp/progmodes/make-mode.el
parent88529506cc6877b5dcf95ff189da318c46cfb5fd (diff)
downloademacs-9e2d84ccc8e567108ec35c8eef9cbf2eddeaccb6.tar.gz
emacs-9e2d84ccc8e567108ec35c8eef9cbf2eddeaccb6.tar.bz2
emacs-9e2d84ccc8e567108ec35c8eef9cbf2eddeaccb6.zip
(makefile-special-targets-list)
(makefile-macro-table, makefile-target-table): Mark as risky.
Diffstat (limited to 'lisp/progmodes/make-mode.el')
-rw-r--r--lisp/progmodes/make-mode.el3
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
you enter a \".\" at the beginning of a line in `makefile-mode'."
:type '(repeat (list string))
:group 'makefile)
+(put 'makefile-special-targets-list 'risky-local-variable t)
(defcustom makefile-runtime-macros-list
'(("@") ("&") (">") ("<") ("*") ("^") ("+") ("?") ("%") ("$"))
@@ -670,9 +671,11 @@ The function must satisfy this calling convention:
(defvar makefile-target-table nil
"Table of all target names known for this buffer.")
+(put 'makefile-target-table 'risky-local-variable t)
(defvar makefile-macro-table nil
"Table of all macro names known for this buffer.")
+(put 'makefile-macro-table 'risky-local-variable t)
(defvar makefile-browser-client
"A buffer in Makefile mode that is currently using the browser.")