Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
208d4577
Commit
208d4577
authored
Dec 21, 2005
by
Stefan Monnier
Browse files
(url-configuration-directory): Use ~/.emacs.d if possible.
parent
398de718
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
lisp/url/url.el
lisp/url/url.el
+5
-1
No files found.
lisp/url/url.el
View file @
208d4577
...
...
@@ -48,7 +48,11 @@
;; Fixme: customize? convert-standard-filename?
;;;###autoload
(
defvar
url-configuration-directory
"~/.url"
)
(
defvar
url-configuration-directory
(
cond
((
file-directory-p
"~/.url"
)
"~/.url"
)
((
file-directory-p
"~/.emacs.d"
)
"~/.emacs.d/url"
)
(
t
"~/.url"
)))
(
defun
url-do-setup
()
"Setup the url package.
...
...
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