diff options
| author | Richard M. Stallman | 2002-02-07 17:50:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-02-07 17:50:25 +0000 |
| commit | 001f55836627675c610fc0d234c07cb81977bedb (patch) | |
| tree | cfa48ecb2afceb88993f3dd5bba5b30b02413394 | |
| parent | a1970a1d1d24d723abd0cd63580b5dc3a312a8e1 (diff) | |
| download | emacs-001f55836627675c610fc0d234c07cb81977bedb.tar.gz emacs-001f55836627675c610fc0d234c07cb81977bedb.zip | |
(ffap-newsgroup-p): Test for non-nil symbol-value of htb.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/ffap.el | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6bfae3113be..0d0d3e33f59 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-02-07 Markus Rost <rost@math.ohio-state.edu> | ||
| 2 | |||
| 3 | * ffap.el (ffap-newsgroup-p): Test for non-nil symbol-value of htb. | ||
| 4 | |||
| 1 | 2002-02-07 Richard M. Stallman <rms@gnu.org> | 5 | 2002-02-07 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * terminal.el (terminal-map): Define [menu-bar] so global def is seen. | 7 | * terminal.el (terminal-map): Define [menu-bar] so global def is seen. |
diff --git a/lisp/ffap.el b/lisp/ffap.el index fcded84e402..07ffb0dbd40 100644 --- a/lisp/ffap.el +++ b/lisp/ffap.el | |||
| @@ -549,7 +549,8 @@ Looks at `ffap-ftp-default-user', returns \"\" for \"localhost\"." | |||
| 549 | (progn | 549 | (progn |
| 550 | ;; errs: htb symbol may be unbound, or not a hash-table. | 550 | ;; errs: htb symbol may be unbound, or not a hash-table. |
| 551 | ;; gnus-gethash is just a macro for intern-soft. | 551 | ;; gnus-gethash is just a macro for intern-soft. |
| 552 | (and (intern-soft string (symbol-value htb)) | 552 | (and (symbol-value htb) |
| 553 | (intern-soft string (symbol-value htb)) | ||
| 553 | (setq ret string htbs nil)) | 554 | (setq ret string htbs nil)) |
| 554 | ;; If we made it this far, gnus is running, so ignore "heads": | 555 | ;; If we made it this far, gnus is running, so ignore "heads": |
| 555 | (setq heads nil)) | 556 | (setq heads nil)) |