Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c208c8cd
Commit
c208c8cd
authored
Jan 17, 1996
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(gnus-group-make-help-group): Check whether
`installation-directory' is nil before using it.
parent
7e8fa774
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/gnus.el
lisp/gnus.el
+3
-1
No files found.
lisp/gnus.el
View file @
c208c8cd
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment