X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=doc%2Fmanual%2Fdocstrings.lisp;fp=doc%2Fmanual%2Fdocstrings.lisp;h=8bd36b09f1af141145bb1d98d8c2de8cbef87f1f;hb=eca54df9cd4917ddf1edf485d6beed0e2fad681f;hp=67dc0d19b8b9cadeb2aa4c70c27da184a35938ee;hpb=d62278d1ad8359740e590810b12d84b50b2dc6be;p=sbcl.git diff --git a/doc/manual/docstrings.lisp b/doc/manual/docstrings.lisp index 67dc0d1..8bd36b0 100644 --- a/doc/manual/docstrings.lisp +++ b/doc/manual/docstrings.lisp @@ -743,10 +743,10 @@ followed another tabulation label or a tabulation body." (title-name doc) ;; &foo would be amusingly bold in the pdf thanks to TeX/Texinfo ;; interactions,so we escape the ampersand -- amusingly for TeX. - ;; sbcl.texinfo defines macros that expand @&key and friends to &key. + ;; sbcl.texinfo defines macros that expand @andkey and friends to &key. (mapcar (lambda (name) (if (member name lambda-list-keywords) - (format nil "@~A" name) + (format nil "@and~A{}" (remove #\- (subseq (string name) 1))) name)) (lambda-list doc)))))