From: Philipp Stephani Date: Tue, 26 Jul 2022 08:30:55 +0000 (+0200) Subject: * lisp/uniquify.el (uniquify-buffer-name-style): Quote apostrophe. X-Git-Tag: emacs-28.2~71 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=20ee17385f;p=emacs.git * lisp/uniquify.el (uniquify-buffer-name-style): Quote apostrophe. --- diff --git a/lisp/uniquify.el b/lisp/uniquify.el index 6b48fe3df62..27a0dbd1200 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