]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix some quoting problems in defcustom :type
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 10 May 2022 16:33:14 +0000 (18:33 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 10 May 2022 16:33:14 +0000 (18:33 +0200)
* 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.

lisp/eshell/em-hist.el
lisp/gnus/gnus.el
lisp/progmodes/gdb-mi.el

index a18127a547a7d6b6e789c0ebe8fcbc794971d067..1877749c5cff2187ef1811738a0c1a57cd826527 100644 (file)
@@ -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.
index 1f673771fa1bafa15155b6bcbf3e5f3ee4c9e4f1..f60c11f985dfa817c5f186a168d720d095f310ae 100644 (file)
@@ -1591,7 +1591,7 @@ posting an article."
  "Alist of group regexps and its initial input of the number of articles."
  :variable-group gnus-group-parameter
  :parameter-type '(choice :tag "Initial Input for Large Newsgroup"
-                         (const :tag "All" 'all)
+                         (const :tag "All" all)
                          (integer))
  :parameter-document "\
 
index 089c273bc6df59a8806e93632c214025bf6ffd31..3b9e1231abbda68dfc37104b0e93329416e1a4b5 100644 (file)
@@ -284,8 +284,8 @@ Possible values are:
   :type '(choice
           (const :tag "Always restore" t)
           (const :tag "Don't restore" nil)
-          (const :tag "Depends on `gdb-show-main'" 'if-gdb-show-main)
-          (const :tag "Depends on `gdb-many-windows'" 'if-gdb-many-windows))
+          (const :tag "Depends on `gdb-show-main'" if-gdb-show-main)
+          (const :tag "Depends on `gdb-many-windows'" if-gdb-many-windows))
   :group 'gdb
   :version "28.1")