diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-07-18 21:53:22 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-07-18 21:53:22 +0300 |
commit | bbce22337c5334544da5d0cee0abad954e42a08c (patch) | |
tree | 37ef9adc92629eb23908666b35afd8dc4133e41a /doc/lispref/variables.texi | |
parent | 88cc9d22df3cbeac92fb280799fae48d8f839a5a (diff) | |
download | emacs-bbce22337c5334544da5d0cee0abad954e42a08c.tar.gz emacs-bbce22337c5334544da5d0cee0abad954e42a08c.tar.bz2 emacs-bbce22337c5334544da5d0cee0abad954e42a08c.zip |
Fix documentation of a recent changeset (bug#5003)
* lisp/files.el (safe-local-variable-values)
(ignored-local-variable-values): Doc fix.
(ignored-local-variable-values): Add :version tag.
* doc/emacs/custom.texi (Safe File Variables): Mention
'ignored-local-variable-values'.
* doc/lispref/variables.texi (File Local Variables): Fix wording.
* etc/NEWS: Improve wording of the 'ignored-local-variable-values'
entry.
Diffstat (limited to 'doc/lispref/variables.texi')
-rw-r--r-- | doc/lispref/variables.texi | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi index 541b53fd357..f2307c8aa72 100644 --- a/doc/lispref/variables.texi +++ b/doc/lispref/variables.texi @@ -1996,13 +1996,16 @@ file. @end defopt @defopt ignored-local-variable-values -If there are some local variables that you always want to always -ignore, this variable can be used. It uses the same syntax as -@code{safe-local-variable-values}, but the variable/value pairs here -will always be ignored when handling local variables. As with that -variable, when Emacs queries the user about whether to obey a -file-local variable, the user can choose to ignore them permanently, -and that will alter this variable and save it to the user's custom file. +If there are some values of particular local variables that you always +want to ignore completely, you can this variable. Its value has the +same form as @code{safe-local-variable-values}; a file-local variable +setting to the value that appears in the list will always be ignored +when processing the local variables specified by the file. As with +that variable, when Emacs queries the user about whether to obey a +file-local variable, you can choose to ignore their particular values +permanently, and that will alter this variable and save it to the +user's custom file. Variable-value pairs that appear in this variable +take precedence over the same pairs in @code{safe-local-variable-values}. @end defopt @defun safe-local-variable-p sym val |