]> git.eshelyaron.com Git - emacs.git/commitdiff
(woman): Don't call interactive-p.
authorRichard M. Stallman <rms@gnu.org>
Tue, 26 Oct 2004 08:36:11 +0000 (08:36 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 26 Oct 2004 08:36:11 +0000 (08:36 +0000)
lisp/woman.el

index cea1c61bcc423495ab569f21fbe3e88768c34de4..610590a297211516d3d9fad5638f85d6338b9fcc 100644 (file)
@@ -1132,7 +1132,7 @@ Used non-interactively, arguments are optional: if given then TOPIC
 should be a topic string and non-nil RE-CACHE forces re-caching."
   (interactive (list nil current-prefix-arg))
   ;; The following test is for non-interactive calls via gnudoit etc.
-  (if (or (interactive-p) (not (stringp topic)) (string-match "\\S " topic))
+  (if (or (not (stringp topic)) (string-match "\\S " topic))
       (let ((file-name (woman-file-name topic re-cache)))
        (if file-name
            (woman-find-file file-name)