summaryrefslogtreecommitdiff
path: root/lisp/eshell/em-hist.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-05-10 18:33:14 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-05-10 18:33:14 +0200
commit44db73d968040cf76ba3b50694cb43d30667205a (patch)
treebb9ee8c0beb5e42e00fc5361a50770f0aac91162 /lisp/eshell/em-hist.el
parentfd49e3c62bf162bbe27de6ecc107a4e934a21708 (diff)
downloademacs-44db73d968040cf76ba3b50694cb43d30667205a.tar.gz
emacs-44db73d968040cf76ba3b50694cb43d30667205a.tar.bz2
emacs-44db73d968040cf76ba3b50694cb43d30667205a.zip
Fix some quoting problems in defcustom :type
* lisp/progmodes/gdb-mi.el (gdb-restore-window-configuration-after-quit): * lisp/gnus/gnus.el (large-newsgroup-initial): * lisp/eshell/em-hist.el (eshell-hist-ignoredups): Fix invalid quoting in :type.
Diffstat (limited to 'lisp/eshell/em-hist.el')
-rw-r--r--lisp/eshell/em-hist.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-hist.el b/lisp/eshell/em-hist.el
index a18127a547a..1877749c5cf 100644
--- a/lisp/eshell/em-hist.el
+++ b/lisp/eshell/em-hist.el
@@ -104,7 +104,7 @@ in bash, and any other non-nil value mirrors the \"ignoredups\"
value."
:type '(choice (const :tag "Don't ignore anything" nil)
(const :tag "Ignore consecutive duplicates" t)
- (const :tag "Only keep last duplicate" 'erase)))
+ (const :tag "Only keep last duplicate" erase)))
(defcustom eshell-save-history-on-exit t
"Determine if history should be automatically saved.