Skip to content

Commit

Permalink
Fix #188: Missing arguments in manual when built with CCL.
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Trumbo committed Feb 21, 2015
1 parent 860021b commit f35c077
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions manual.lisp
Expand Up @@ -47,8 +47,9 @@
name
#+sbcl (sb-introspect:function-lambda-list fn)
#+clisp (ext:arglist fn)
#+ccl (ccl:arglist fn)
#+lispworks (lw:function-lambda-list fn)
#- (or sbcl clisp lispworks) '("(Check the code for args list)")
#- (or sbcl clisp ccl lispworks) '("(Check the code for args list)")
(documentation fn 'function))
t)))

Expand All @@ -61,8 +62,9 @@
name
#+sbcl (sb-introspect:function-lambda-list (macro-function symbol))
#+clisp (ext:arglist symbol)
#+ccl (ccl:arglist symbol)
#+lispworks (lw:function-lambda-list symbol)
#- (or sbcl clisp lispworks) '("(Check the code for args list)")
#- (or sbcl clisp ccl lispworks) '("(Check the code for args list)")
;;; FIXME: when clisp compiles
;;; a macro it discards the
;;; documentation string! So
Expand Down Expand Up @@ -99,8 +101,9 @@
name
#+sbcl (sb-introspect:function-lambda-list cmd)
#+clisp (ext:arglist cmd)
#+ccl (ccl:arglist cmd)
#+lispworks (lw:function-lambda-list cmd)
#- (or sbcl clisp lispworks) '("(Check the code for args list)")
#- (or sbcl clisp ccl lispworks) '("(Check the code for args list)")
(documentation cmd 'function))
t)))

Expand Down

0 comments on commit f35c077

Please sign in to comment.