diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-28 23:03:53 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-28 23:03:53 +0100 |
commit | ceca3e57da983def1e9780d83dab602532d0d328 (patch) | |
tree | 51a627c76efb083345646e0c6a1b8e5ab81b5fbc | |
parent | 441cc2a9ba563c55ec3dd6ed138f99f62464d5ea (diff) | |
download | geiser-guile-ceca3e57da983def1e9780d83dab602532d0d328.tar.gz geiser-guile-ceca3e57da983def1e9780d83dab602532d0d328.tar.bz2 |
Display (quote foo) as 'foo in autodoc strings.
-rw-r--r-- | geiser/introspection.scm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/geiser/introspection.scm b/geiser/introspection.scm index fd6784d..c7b6de2 100644 --- a/geiser/introspection.scm +++ b/geiser/introspection.scm @@ -118,11 +118,6 @@ (iota (max count 1)))) (define (arguments proc) - "Return an alist describing the arguments that `proc' accepts, or `#f' -if the information cannot be obtained. - -The alist keys that are currently defined are `required', `optional', -`keyword', and `rest'." (cond ((procedure-property proc 'arglist) => (lambda (arglist) |