summaryrefslogtreecommitdiff
path: root/lisp/bookmark.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-09-01 19:03:37 +0000
committerRichard M. Stallman <rms@gnu.org>1996-09-01 19:03:37 +0000
commit88fb0aaae4782f57f48c55c0c50f5eb04e80ef6e (patch)
tree53d5d20260acc834d919b1eaec90dc5a4b5ed348 /lisp/bookmark.el
parent4a047d230c3948026a3962b647fc31a2bf3fd013 (diff)
downloademacs-88fb0aaae4782f57f48c55c0c50f5eb04e80ef6e.tar.gz
(bookmark-default-file): Use convert-standard-filename.
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r--lisp/bookmark.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el
index 4340048e7b6..36bb94464bb 100644
--- a/lisp/bookmark.el
+++ b/lisp/bookmark.el
@@ -135,9 +135,7 @@ bookmark-default-file, which is `~/.emacs.bmk' by default.")
(if bookmark-file
;; In case user set `bookmark-file' in her .emacs:
bookmark-file
- (if (eq system-type 'ms-dos)
- "~/emacs.bmk" ; Cannot have initial dot [Yuck!]
- "~/.emacs.bmk"))
+ (convert-standard-filename "~/.emacs.bmk"))
"*File in which to save bookmarks by default.")