; * lisp/emacs-lisp/cl-macs.el (cl-labels): Fix stray diff marker.
authorRobert Pluim <rpluim@gmail.com>
Wed, 20 Mar 2024 08:33:37 +0000 (09:33 +0100)
committerRobert Pluim <rpluim@gmail.com>
Wed, 20 Mar 2024 08:37:09 +0000 (09:37 +0100)
lisp/emacs-lisp/cl-macs.el

index 949b3284782150de0eecd17620f7852ea32613ae..732deda618d548d58ecadf9c1a78e16031d83afb 100644 (file)
@@ -2203,7 +2203,7 @@ Like `cl-flet' but the definitions can refer to previous ones.
 ;;;###autoload
 (defmacro cl-labels (bindings &rest body)
   "Make local (recursive) function definitions.
-+BINDINGS is a list of definitions of the form (FUNC ARGLIST BODY...) where
+BINDINGS is a list of definitions of the form (FUNC ARGLIST BODY...) where
 FUNC is the function name, ARGLIST its arguments, and BODY the
 forms of the function body.  FUNC is defined in any BODY, as well
 as FORM, so you can write recursive and mutually recursive