diff options
-rw-r--r-- | lisp/bookmark.el | 4 |
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.") |