diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-12-24 03:24:44 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-12-24 15:37:05 +0100 |
commit | 5b6c3a20a32273d094c72bb1b84fb3ada196eef4 (patch) | |
tree | 498526fd9af62a30de25a5262145256cd56458b7 /lisp/eshell/em-banner.el | |
parent | 32fc42322487bc43b62fb964529c2321c2e0215c (diff) | |
download | emacs-5b6c3a20a32273d094c72bb1b84fb3ada196eef4.tar.gz emacs-5b6c3a20a32273d094c72bb1b84fb3ada196eef4.tar.bz2 emacs-5b6c3a20a32273d094c72bb1b84fb3ada196eef4.zip |
Prefer the defcustom :risky property in eshell
* lisp/eshell/em-banner.el (eshell-banner-message):
* lisp/eshell/em-hist.el (eshell-input-filter):
* lisp/eshell/em-pred.el (eshell-predicate-alist)
(eshell-modifier-alist):
* lisp/eshell/esh-cmd.el (eshell-subcommand-bindings):
* lisp/eshell/esh-io.el (eshell-virtual-targets):
* lisp/eshell/esh-var.el (eshell-variable-aliases-list): Prefer
defcustom :risky property to setting 'risky-local-variable manually.
Diffstat (limited to 'lisp/eshell/em-banner.el')
-rw-r--r-- | lisp/eshell/em-banner.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/eshell/em-banner.el b/lisp/eshell/em-banner.el index 034fa059b16..cebb030deda 100644 --- a/lisp/eshell/em-banner.el +++ b/lisp/eshell/em-banner.el @@ -61,10 +61,9 @@ modules may have a simple template to begin with." "The banner message to be displayed when Eshell is loaded. This can be any sexp, and should end with at least two newlines." :type 'sexp + :risky t :group 'eshell-banner) -(put 'eshell-banner-message 'risky-local-variable t) - (defcustom eshell-banner-load-hook nil "A list of functions to run when `eshell-banner' is loaded." :version "24.1" ; removed eshell-banner-initialize |