diff options
| -rw-r--r-- | lisp/gnus.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gnus.el b/lisp/gnus.el index 7fab728a264..e7506466f38 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el | |||
| @@ -4259,7 +4259,9 @@ ADDRESS." | |||
| 4259 | (defun gnus-group-make-help-group () | 4259 | (defun gnus-group-make-help-group () |
| 4260 | "Create the Gnus documentation group." | 4260 | "Create the Gnus documentation group." |
| 4261 | (interactive) | 4261 | (interactive) |
| 4262 | (let ((path (cons (concat installation-directory "etc/") load-path)) | 4262 | (let ((path (if installation-directory |
| 4263 | (cons (concat installation-directory "etc/") load-path) | ||
| 4264 | (cons data-directory load-path))) | ||
| 4263 | (name (gnus-group-prefixed-name "gnus-help" '(nndoc "gnus-help"))) | 4265 | (name (gnus-group-prefixed-name "gnus-help" '(nndoc "gnus-help"))) |
| 4264 | file) | 4266 | file) |
| 4265 | (and (gnus-gethash name gnus-newsrc-hashtb) | 4267 | (and (gnus-gethash name gnus-newsrc-hashtb) |