summaryrefslogtreecommitdiff
path: root/lisp/uniquify.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-08-03 13:22:09 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-08-03 13:22:09 +0200
commit0a54a5017a801b5a333e1bf9d861d075ff45d486 (patch)
tree41bdd32483c648e8a4bc14e0f77e8e0c75715e92 /lisp/uniquify.el
parent0596c6918667704c486bd7ffba8b13572b8237d9 (diff)
downloademacs-0a54a5017a801b5a333e1bf9d861d075ff45d486.tar.gz
emacs-0a54a5017a801b5a333e1bf9d861d075ff45d486.tar.bz2
emacs-0a54a5017a801b5a333e1bf9d861d075ff45d486.zip
Fix #' quoting in uniquify-buffer-name-style doc string
* lisp/uniquify.el (uniquify-buffer-name-style): Fix wrong quoting.
Diffstat (limited to 'lisp/uniquify.el')
-rw-r--r--lisp/uniquify.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/uniquify.el b/lisp/uniquify.el
index 0b7db9b54fb..b75b47c03c5 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