mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-03 02:31:03 -08:00
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).
This commit is contained in:
parent
f025005e86
commit
4c1bc8315d
4 changed files with 19 additions and 19 deletions
|
|
@ -2563,9 +2563,9 @@ values. For compatibility, (cl-values A B C) is a synonym for (list A B C).
|
|||
(defun cl--optimize (f _args &rest qualities)
|
||||
"Serve `cl-optimize' in function declarations.
|
||||
Example:
|
||||
(defun foo (x)
|
||||
(declare (cl-optimize (speed 3) (safety 0)))
|
||||
x)"
|
||||
(defun foo (x)
|
||||
(declare (cl-optimize (speed 3) (safety 0)))
|
||||
x)"
|
||||
;; FIXME this should make use of `cl--declare-stack' but I suspect
|
||||
;; this mechanism should be reviewed first.
|
||||
(cl-loop for (qly val) in qualities
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue