diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-03-04 12:16:51 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-03-04 12:16:51 +0200 |
commit | ea5fd375bb2656562f57325b3d5c6fd17f6b2e72 (patch) | |
tree | 0187968b52903fc0b1a952489ce7251fa168f445 /lisp/files.el | |
parent | 4c16fd3a51286e1b1685bfb28e0cd6ae2358c37d (diff) | |
download | emacs-ea5fd375bb2656562f57325b3d5c6fd17f6b2e72.tar.gz emacs-ea5fd375bb2656562f57325b3d5c6fd17f6b2e72.tar.bz2 emacs-ea5fd375bb2656562f57325b3d5c6fd17f6b2e72.zip |
Fix documentation of 'normal-mode' in buffers that don't visit files
* lisp/files.el (normal-mode):
* lisp/subr.el (run-mode-hooks):
* doc/emacs/modes.texi (Choosing Modes): Mention the caveat with
'normal-mode' in buffers not visiting files. (Bug#61925)
* lisp/files.el (hack-local-variables): Doc fix.
Diffstat (limited to 'lisp/files.el')
-rw-r--r-- | lisp/files.el | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/lisp/files.el b/lisp/files.el index db3f348c4b5..63ad2806ca3 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -2775,7 +2775,11 @@ not set local variables (though we do notice a mode specified with -*-.) `enable-local-variables' is ignored if you run `normal-mode' interactively, or from Lisp without specifying the optional argument FIND-FILE; -in that case, this function acts as if `enable-local-variables' were t." +in that case, this function acts as if `enable-local-variables' were t. + +If invoked in a buffer that doesn't visit a file, this function +processes only the major mode specification in the -*- line and +the local variables spec." (interactive) (kill-all-local-variables) (unless delay-mode-hooks @@ -3925,9 +3929,6 @@ variables. Uses `hack-local-variables-apply' to apply the variables. -See `hack-local-variables--find-variables' for the meaning of -HANDLE-MODE. - If `enable-local-variables' or `local-enable-local-variables' is nil, or INHIBIT-LOCALS is non-nil, this function disregards all normal local variables. If `inhibit-local-variables-regexps' @@ -3937,7 +3938,14 @@ applied. Variables present in `permanently-enabled-local-variables' will still be evaluated, even if local variables are otherwise -inhibited." +inhibited. + +If HANDLE-MODE is t, the function only checks whether a \"mode:\" +is specified, and returns the corresponding mode symbol, or nil. +In this case, try to ignore minor-modes, and return only a major-mode. +If HANDLE-MODE is nil, the function gathers all the specified local +variables. If HANDLE-MODE is neither nil nor t, the functions gathers +all the specified local variables, but ignores any settings of \"mode:\"." ;; We don't let inhibit-local-variables-p influence the value of ;; enable-local-variables, because then it would affect dir-local ;; variables. We don't want to search eg tar files for file local |