]> git.eshelyaron.com Git - emacs.git/commitdiff
(makefile-special-targets-list)
authorRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>
Sun, 21 May 2006 18:46:41 +0000 (18:46 +0000)
committerRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>
Sun, 21 May 2006 18:46:41 +0000 (18:46 +0000)
(makefile-macro-table, makefile-target-table): Mark as risky.

lisp/progmodes/make-mode.el

index 32d245f67f2d9d2f1a58b076ea49191700945976..f8b7a1c6a91e71d87608010dd02006e0ff71d789 100644 (file)
@@ -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.")