diff options
Diffstat (limited to 'lisp/files.el')
| -rw-r--r-- | lisp/files.el | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/lisp/files.el b/lisp/files.el index e5c2358b1d0..ee986e5cece 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -658,7 +658,7 @@ one or more of those symbols." | |||
| 658 | 658 | ||
| 659 | (defun locate-file-completion (string path-and-suffixes action) | 659 | (defun locate-file-completion (string path-and-suffixes action) |
| 660 | "Do completion for file names passed to `locate-file'. | 660 | "Do completion for file names passed to `locate-file'. |
| 661 | PATH-AND-SUFFIXES is a pair of lists (DIRECTORIES . SUFFIXES)." | 661 | PATH-AND-SUFFIXES is a pair of lists, (DIRECTORIES . SUFFIXES)." |
| 662 | (if (file-name-absolute-p string) | 662 | (if (file-name-absolute-p string) |
| 663 | (read-file-name-internal string nil action) | 663 | (read-file-name-internal string nil action) |
| 664 | (let ((names nil) | 664 | (let ((names nil) |
| @@ -1766,12 +1766,12 @@ in that case, this function acts as if `enable-local-variables' were t." | |||
| 1766 | ("\\.ad[abs]\\'" . ada-mode) | 1766 | ("\\.ad[abs]\\'" . ada-mode) |
| 1767 | ("\\.ad[bs].dg\\'" . ada-mode) | 1767 | ("\\.ad[bs].dg\\'" . ada-mode) |
| 1768 | ("\\.\\([pP]\\([Llm]\\|erl\\|od\\)\\|al\\)\\'" . perl-mode) | 1768 | ("\\.\\([pP]\\([Llm]\\|erl\\|od\\)\\|al\\)\\'" . perl-mode) |
| 1769 | ("GNUmakefile\\'" . makefile-gmake-mode) | ||
| 1770 | ,@(if (memq system-type '(berkeley-unix next-mach darwin)) | 1769 | ,@(if (memq system-type '(berkeley-unix next-mach darwin)) |
| 1771 | '(("\\.mk\\'" . makefile-bsdmake-mode) | 1770 | '(("\\.mk\\'" . makefile-bsdmake-mode) |
| 1771 | ("GNUmakefile\\'" . makefile-gmake-mode) | ||
| 1772 | ("[Mm]akefile\\'" . makefile-bsdmake-mode)) | 1772 | ("[Mm]akefile\\'" . makefile-bsdmake-mode)) |
| 1773 | '(("\\.mk\\'" . makefile-gmake-mode) ; Might be any make, give Gnu the host advantage | 1773 | '(("\\.mk\\'" . makefile-gmake-mode) ; Might be any make, give Gnu the host advantage |
| 1774 | ("[Mm]akefile\\'" . makefile-mode))) | 1774 | ("[Mm]akefile\\'" . makefile-gmake-mode))) |
| 1775 | ("Makeppfile\\'" . makefile-makepp-mode) | 1775 | ("Makeppfile\\'" . makefile-makepp-mode) |
| 1776 | ("\\.am\\'" . makefile-automake-mode) | 1776 | ("\\.am\\'" . makefile-automake-mode) |
| 1777 | ;; Less common extensions come here | 1777 | ;; Less common extensions come here |
| @@ -2159,9 +2159,9 @@ Otherwise, return nil; point may be changed." | |||
| 2159 | (goto-char beg) | 2159 | (goto-char beg) |
| 2160 | end)))) | 2160 | end)))) |
| 2161 | 2161 | ||
| 2162 | (defun hack-local-variables-confirm (string) | 2162 | (defun hack-local-variables-confirm (string flag-to-check) |
| 2163 | (or (eq enable-local-variables t) | 2163 | (or (eq flag-to-check t) |
| 2164 | (and enable-local-variables | 2164 | (and flag-to-check |
| 2165 | (save-window-excursion | 2165 | (save-window-excursion |
| 2166 | (condition-case nil | 2166 | (condition-case nil |
| 2167 | (switch-to-buffer (current-buffer)) | 2167 | (switch-to-buffer (current-buffer)) |
| @@ -2236,7 +2236,8 @@ is specified, returning t if it is specified." | |||
| 2236 | (if (and result | 2236 | (if (and result |
| 2237 | (or mode-only | 2237 | (or mode-only |
| 2238 | (hack-local-variables-confirm | 2238 | (hack-local-variables-confirm |
| 2239 | "Set local variables as specified in -*- line of %s? "))) | 2239 | "Set local variables as specified in -*- line of %s? " |
| 2240 | enable-local-variables))) | ||
| 2240 | (let ((enable-local-eval enable-local-eval)) | 2241 | (let ((enable-local-eval enable-local-eval)) |
| 2241 | (while result | 2242 | (while result |
| 2242 | (hack-one-local-variable (car (car result)) (cdr (car result))) | 2243 | (hack-one-local-variable (car (car result)) (cdr (car result))) |
| @@ -2267,7 +2268,8 @@ is specified, returning t if it is specified." | |||
| 2267 | (and (search-forward "Local Variables:" nil t) | 2268 | (and (search-forward "Local Variables:" nil t) |
| 2268 | (or mode-only | 2269 | (or mode-only |
| 2269 | (hack-local-variables-confirm | 2270 | (hack-local-variables-confirm |
| 2270 | "Set local variables as specified at end of %s? ")))) | 2271 | "Set local variables as specified at end of %s? " |
| 2272 | enable-local-variables)))) | ||
| 2271 | (skip-chars-forward " \t") | 2273 | (skip-chars-forward " \t") |
| 2272 | (let ((enable-local-eval enable-local-eval) | 2274 | (let ((enable-local-eval enable-local-eval) |
| 2273 | ;; suffix is what comes after "local variables:" in its line. | 2275 | ;; suffix is what comes after "local variables:" in its line. |
| @@ -2489,7 +2491,8 @@ is considered risky." | |||
| 2489 | ;; Permit eval if not root and user says ok. | 2491 | ;; Permit eval if not root and user says ok. |
| 2490 | (and (not (zerop (user-uid))) | 2492 | (and (not (zerop (user-uid))) |
| 2491 | (hack-local-variables-confirm | 2493 | (hack-local-variables-confirm |
| 2492 | "Process `eval' or hook local variables in %s? "))) | 2494 | "Process `eval' or hook local variables in %s? " |
| 2495 | enable-local-eval))) | ||
| 2493 | (if (eq var 'eval) | 2496 | (if (eq var 'eval) |
| 2494 | (save-excursion (eval val)) | 2497 | (save-excursion (eval val)) |
| 2495 | (make-local-variable var) | 2498 | (make-local-variable var) |
| @@ -2851,7 +2854,7 @@ the value is \"\"." | |||
| 2851 | 2854 | ||
| 2852 | (defcustom make-backup-file-name-function nil | 2855 | (defcustom make-backup-file-name-function nil |
| 2853 | "A function to use instead of the default `make-backup-file-name'. | 2856 | "A function to use instead of the default `make-backup-file-name'. |
| 2854 | A value of nil gives the default `make-backup-file-name' behaviour. | 2857 | A value of nil gives the default `make-backup-file-name' behavior. |
| 2855 | 2858 | ||
| 2856 | This could be buffer-local to do something special for specific | 2859 | This could be buffer-local to do something special for specific |
| 2857 | files. If you define it, you may need to change `backup-file-name-p' | 2860 | files. If you define it, you may need to change `backup-file-name-p' |