diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-04 11:02:49 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-04 11:03:10 +0200 |
commit | 4c1bc8315d8e677e4eeb2760d7a5ab7b7553359b (patch) | |
tree | 1e72d4fefc539c626f045511c12b238ff379533d /lisp/uniquify.el | |
parent | f025005e8619ab42b43dad5dd470dbbbcdc75041 (diff) | |
download | emacs-4c1bc8315d8e677e4eeb2760d7a5ab7b7553359b.tar.gz emacs-4c1bc8315d8e677e4eeb2760d7a5ab7b7553359b.tar.bz2 emacs-4c1bc8315d8e677e4eeb2760d7a5ab7b7553359b.zip |
Fix up some prefix registration problems in doc strings
* lisp/uniquify.el (uniquify-buffer-name-style):
* lisp/org/ob-core.el (org-src-sha):
* lisp/emacs-lisp/cl-macs.el (cl--optimize):
* lisp/battery.el (battery-update-functions): Avoid triggering the
`register-definition-prefixes' in doc strings (bug#56968).
Diffstat (limited to 'lisp/uniquify.el')
-rw-r--r-- | lisp/uniquify.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/uniquify.el b/lisp/uniquify.el index b75b47c03c5..74655e299a8 100644 --- a/lisp/uniquify.el +++ b/lisp/uniquify.el @@ -109,8 +109,8 @@ BASE and EXTRA-STRINGS where BASE is a string and EXTRA-STRINGS 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 \"/\") \">\")) + (defun my-post-forward-angle-brackets (base 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 |