]> git.eshelyaron.com Git - emacs.git/commitdiff
Unquote #'project-uniquify-dirname-transform in uniquify-dirname-transform.
authorJuri Linkov <juri@linkov.net>
Thu, 28 Sep 2023 06:48:51 +0000 (09:48 +0300)
committerJuri Linkov <juri@linkov.net>
Thu, 28 Sep 2023 06:48:51 +0000 (09:48 +0300)
* lisp/uniquify.el (uniquify-dirname-transform): Use , on #'.

lisp/uniquify.el

index 2ad2fb0eeac304d5c3cd7939cc802e8b62e1adb5..7119ae7eac3ecf15b74eeb8cd46f987214d7ce08 100644 (file)
@@ -187,9 +187,9 @@ name will then be used to uniquify the buffer's name.
 
 To include components from the `project-name' of the buffer, set
 this variable to `project-uniquify-dirname-transform'."
-  :type '(choice (function-item :tag "Use directory name as-is" identity)
+  :type `(choice (function-item :tag "Use directory name as-is" identity)
                  (function-item :tag "Include project name in directory name"
-                                #'project-uniquify-dirname-transform)
+                                ,#'project-uniquify-dirname-transform)
                  function)
   :version "30.1"
   :group 'uniquify)