* Fixed apropos: regexp-exec does not accept symbol arguments any more.
[bpt/guile.git] / ice-9 / emacs.scm
index 535e59a..850571d 100644 (file)
 
 (define (emacs-symdoc symbol)
   (if (or (not (module-bound? (current-module) symbol))
-         (not (procedure? (eval symbol) (interaction-environment))))
+         (not (procedure? (eval symbol (interaction-environment)))))
       'nil
       (procedure-documentation (eval symbol (interaction-environment)))))