Mercurial > emacs
diff lisp/ffap.el @ 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 | e52b4f89d86f |
| children | f29db3d22988 |
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))
