From 20ee17385f06a050aa45985fb4da2ff3f27925d5 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Tue, 26 Jul 2022 10:30:55 +0200 Subject: [PATCH] * lisp/uniquify.el (uniquify-buffer-name-style): Quote apostrophe. --- lisp/uniquify.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5