From: Richard M. Stallman Date: Sun, 1 Sep 1996 19:03:37 +0000 (+0000) Subject: (bookmark-default-file): Use convert-standard-filename. X-Git-Tag: emacs-20.1~3908 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=88fb0aaae4782f57f48c55c0c50f5eb04e80ef6e;p=emacs.git (bookmark-default-file): Use convert-standard-filename. --- 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.")