Mercurial > emacs
changeset 70810:d464ed82246a
(makefile-special-targets-list)
(makefile-macro-table, makefile-target-table): Mark as risky.
author | Roland Winkler <Roland.Winkler@physik.uni-erlangen.de> |
---|---|
date | Sun, 21 May 2006 18:46:41 +0000 |
parents | 643dcb1bfe7d |
children | fbbc9639de95 |
files | lisp/progmodes/make-mode.el |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/make-mode.el Sun May 21 18:39:55 2006 +0000 +++ b/lisp/progmodes/make-mode.el Sun May 21 18:46:41 2006 +0000 @@ -246,6 +246,7 @@ 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 @@ (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.")