aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2004-10-26 08:36:11 +0000
committerRichard M. Stallman <[email protected]>2004-10-26 08:36:11 +0000
commitce5568bf190cad55e7987c0bebb8c5731b2fb9e7 (patch)
treee59a46ad44a306a2af0607f4bb33ab0fe9a81293
parent060a33bb97e9d7a0896ce6941eb3f63987ebf2a4 (diff)
(woman): Don't call interactive-p.
-rw-r--r--lisp/woman.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/woman.el b/lisp/woman.el
index cea1c61bcc..610590a297 100644
--- a/lisp/woman.el
+++ b/lisp/woman.el
@@ -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)