diff options
| -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.") |