emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 0a54a5017a: Fix #' quoting in uniquify-buffer-name-style doc stri


From: Lars Ingebrigtsen
Subject: master 0a54a5017a: Fix #' quoting in uniquify-buffer-name-style doc string
Date: Wed, 3 Aug 2022 07:22:24 -0400 (EDT)

branch: master
commit 0a54a5017a801b5a333e1bf9d861d075ff45d486
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Fix #' quoting in uniquify-buffer-name-style doc string
    
    * lisp/uniquify.el (uniquify-buffer-name-style): Fix wrong quoting.
---
 lisp/uniquify.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/uniquify.el b/lisp/uniquify.el
index 0b7db9b54f..b75b47c03c 100644
--- a/lisp/uniquify.el
+++ b/lisp/uniquify.el
@@ -110,7 +110,7 @@ is a list of strings.  For example the current 
implementation for
 post-forward-angle-brackets could be:
 
 (defun my-post-forward-angle-brackets (base extra-string)
-  (concat base \"<\" (mapconcat #'identity extra-string \"/\") \">\"))
+  (concat base \"<\" (mapconcat #\\='identity extra-string \"/\") \">\"))
 
 The \"mumble\" part may be stripped as well, depending on the
 setting of `uniquify-strip-common-suffix'.  For more options that



reply via email to

[Prev in Thread] Current Thread [Next in Thread]