changeset 43174:8a1b4dc4ca4c

(ffap-newsgroup-p): Test for non-nil symbol-value of htb.
author Richard M. Stallman <rms@gnu.org>
date Thu, 07 Feb 2002 17:49:37 +0000
parents 168298133c9d
children 43e33374440b
files lisp/ffap.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ffap.el	Thu Feb 07 17:48:41 2002 +0000
+++ b/lisp/ffap.el	Thu Feb 07 17:49:37 2002 +0000
@@ -549,7 +549,8 @@
 	   (progn
 	     ;; errs: htb symbol may be unbound, or not a hash-table.
 	     ;; gnus-gethash is just a macro for intern-soft.
-	     (and (intern-soft string (symbol-value htb))
+	     (and (symbol-value htb)
+		  (intern-soft string (symbol-value htb))
 		  (setq ret string htbs nil))
 	     ;; If we made it this far, gnus is running, so ignore "heads":
 	     (setq heads nil))