diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-20 21:22:22 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-20 21:22:22 +0000 |
commit | da0ac66a1d97bf23cd8447ed3989d61a4731d042 (patch) | |
tree | cbdd0b1e9413e15ee06af825ed9404401602e949 /lisp/bookmark.el | |
parent | dfe893a02ae35d7bc510c13df74bb1b9a8e2b7cd (diff) | |
download | emacs-da0ac66a1d97bf23cd8447ed3989d61a4731d042.tar.gz |
(bookmark-file): Alternate default on ms-dos.
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r-- | lisp/bookmark.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 1d8b4129ebe..ab2b5af7bab 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -198,7 +198,10 @@ bookmark-file, which is `~/.emacs-bkmrks' by default.") (defvar bookmark-alist-modification-count 0 "Number of modifications to bookmark list since it was last saved.") -(defvar bookmark-file "~/.emacs-bkmrks" +(defvar bookmark-file + (if (eq system-type 'ms-dos) + "~/emacs.bmk" ; Cannot have initial dot [Yuck!] + "~/.emacs-bkmrks") "*File in which to save bookmarks by default.") (defvar bookmark-version-control 'nospecial |