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
commitbc7c91adde7eda214b8011e21ffe3025bc3e34ca (patch)
tree6bf474052e028d84e8b3ad352f79be116e2d07ea /lisp/bookmark.el
parent4af4eee4b6bbbb3f6c317ebbe8a2e53bda867502 (diff)
downloademacs-bc7c91adde7eda214b8011e21ffe3025bc3e34ca.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.")