diff options
author | Basil L. Contovounesios <contovob@tcd.ie> | 2022-10-26 16:35:59 +0300 |
---|---|---|
committer | Basil L. Contovounesios <contovob@tcd.ie> | 2022-10-26 16:35:59 +0300 |
commit | 38bcad545125a2cda218835b0210f24ab8db1e9e (patch) | |
tree | 44e18a0ae651308c32897c2c89eae2efc105808c /lisp/files.el | |
parent | 32dd769ca441a1bd9bf72494472d0a20e195f9af (diff) | |
download | emacs-38bcad545125a2cda218835b0210f24ab8db1e9e.tar.gz emacs-38bcad545125a2cda218835b0210f24ab8db1e9e.tar.bz2 emacs-38bcad545125a2cda218835b0210f24ab8db1e9e.zip |
Pacify recent unused/ignored lexvar warnings
Lexvars with special names like 'ignored' or 'unused' are no longer
treated specially.
* lisp/ansi-color.el (ansi-color-process-output):
* lisp/cus-edit.el (customize-apropos-options):
* lisp/cus-theme.el (customize-create-theme):
* lisp/dired-aux.el (dired-hide-all):
* lisp/emacs-lisp/crm.el (crm--choose-completion-string):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-revert):
* lisp/ido.el (ido-choose-completion-string):
* lisp/international/mule-diag.el (describe-font-internal):
* lisp/mail/sendmail.el (sendmail-user-agent-compose):
* lisp/progmodes/fortran.el (fortran-uncomment-region):
* lisp/progmodes/prolog.el (prolog-inferior-guess-flavor):
* lisp/progmodes/ruby-mode.el (ruby-indent-line, ruby-indent-exp):
* lisp/url/url.el (url-mm-callback):
* lisp/xwidget.el (xwidget-webkit-history-reload): Prepend an
underscore to unused function parameter names.
* lisp/emacs-lisp/cconv.el (cconv--dummy-var): Remove unused
constant.
* lisp/files.el (hack-local-variables-filter): Remove unused lexvar.
Diffstat (limited to 'lisp/files.el')
-rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index 3fa0f2f3b81..a2825322580 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -3863,7 +3863,7 @@ If these settings come from directory-local variables, then DIR-NAME is the name of the associated directory. Otherwise it is nil." ;; Find those variables that we may want to save to ;; `safe-local-variable-values'. - (let (all-vars risky-vars unsafe-vars ignored) + (let (all-vars risky-vars unsafe-vars) (dolist (elt variables) (let ((var (car elt)) (val (cdr elt))) |