# HG changeset patch # User Richard M. Stallman # Date 1013104177 0 # Node ID 8a1b4dc4ca4c03f85f06ec7b0a233305f91ad4a1 # Parent 168298133c9d32f63a73864219491afd8eefae8c (ffap-newsgroup-p): Test for non-nil symbol-value of htb. diff -r 168298133c9d -r 8a1b4dc4ca4c lisp/ffap.el --- 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))