(gnus-group-make-help-group): Check whether

`installation-directory' is nil before using it.
This commit is contained in:
Richard M. Stallman 1996-01-17 00:24:29 +00:00
parent 7e8fa774dd
commit c208c8cd68

View file

@ -4259,7 +4259,9 @@ ADDRESS."
(defun gnus-group-make-help-group ()
"Create the Gnus documentation group."
(interactive)
(let ((path (cons (concat installation-directory "etc/") load-path))
(let ((path (if installation-directory
(cons (concat installation-directory "etc/") load-path)
(cons data-directory load-path)))
(name (gnus-group-prefixed-name "gnus-help" '(nndoc "gnus-help")))
file)
(and (gnus-gethash name gnus-newsrc-hashtb)