]> git.eshelyaron.com Git - emacs.git/commitdiff
project.el: Fixup two recent defcustoms
authorDmitry Gutov <dmitry@gutov.dev>
Thu, 24 Aug 2023 12:26:00 +0000 (15:26 +0300)
committerDmitry Gutov <dmitry@gutov.dev>
Thu, 24 Aug 2023 12:26:00 +0000 (15:26 +0300)
* lisp/progmodes/project.el (project-file-history-behavior):
Adjust positions inside 'const' forms.
(project-key-prompt-style): Correct the :type form (bug#64799).

lisp/progmodes/project.el

index ab7376b7dc654ee7bb1a9e0d2b1820c73d3f1b90..7aaf7a9f9fb30988f7d570f152a32e8317f9b518 100644 (file)
@@ -1070,8 +1070,8 @@ paths.  This only affects history entries added by earlier calls
 to `project-find-file' or `project-find-dir'.
 
 This has the effect of sharing more history between projects."
-  :type '(choice (const t :tag "Default behavior")
-                 (const relativize :tag "Adjust to be relative to current"))
+  :type '(choice (const :tag "Default behavior" t)
+                 (const :tag "Adjust to be relative to current" relativize))
   :group 'project
   :version "30.1")
 
@@ -1911,7 +1911,8 @@ listed in the dispatch menu produced from `project-switch-commands'."
 
 When `brackets', use text brackets and `bold' for the character.
 Otherwise, use the face `help-key-binding' in the prompt."
-  :type 'boolean
+  :type '(choice (const :tag "Using help-key-binding face" t)
+                 (const :tag "Using bold face and brackets" brackets))
   :group 'project
   :version "30.1")