diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-07-11 10:33:45 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-07-11 11:30:00 +0200 |
commit | da3f3dd0910fae20df47e723088d737aaf0a88c7 (patch) | |
tree | 340a2e62c6ba4449ad428cf31a8cfb8f541c852e /lisp/so-long.el | |
parent | 69b68099ecfb053ac77e0a954ab7467c440321ff (diff) | |
download | emacs-da3f3dd0910fae20df47e723088d737aaf0a88c7.tar.gz emacs-da3f3dd0910fae20df47e723088d737aaf0a88c7.tar.bz2 emacs-da3f3dd0910fae20df47e723088d737aaf0a88c7.zip |
Prefer :risky defcustom keyword
* lisp/align.el (align-region-separate, align-rules-list)
(align-exclude-rules-list, align-vhdl-rules-list):
* lisp/bindings.el (mode-line-percent-position):
* lisp/filesets.el (filesets-menu-cache-file, filesets-commands)
(filesets-external-viewers, filesets-ingroup-patterns)
(filesets-data):
* lisp/hi-lock.el (hi-lock-file-patterns-policy):
* lisp/mail/mailalias.el (mail-complete-alist)
(mail-directory-process, mail-directory-stream)
(mail-directory-parser):
* lisp/mail/rmail.el (rmail-confirm-expunge):
* lisp/mail/sendmail.el (mail-signature):
* lisp/mail/supercite.el (sc-cite-frame-alist)
(sc-uncite-frame-alist, sc-recite-frame-alist)
(sc-default-cite-frame, sc-default-uncite-frame)
(sc-default-recite-frame, sc-attrib-selection-list)
(sc-rewrite-header-list):
* lisp/progmodes/make-mode.el (makefile-special-targets-list):
* lisp/so-long.el (so-long-action-alist):
* lisp/textmodes/sgml-mode.el (sgml-tag-alist): Prefer defcustom
:risky keyword argument to directly setting the 'risky-local-variable'
symbol property.
Diffstat (limited to 'lisp/so-long.el')
-rw-r--r-- | lisp/so-long.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/so-long.el b/lisp/so-long.el index 4950f0adb50..82ce2e1755d 100644 --- a/lisp/so-long.el +++ b/lisp/so-long.el @@ -684,8 +684,8 @@ subsequently called." (function :tag "Action") (function :tag "Revert"))) :set #'so-long--action-alist-setter + :risky t :package-version '(so-long . "1.0")) -(put 'so-long-action-alist 'risky-local-variable t) (defcustom so-long-action 'so-long-mode "The action taken by `so-long' when long lines are detected. |