comparison lisp/bookmark.el @ 7591:d1a839615554

(bookmark-file): Alternate default on ms-dos.
author Richard M. Stallman <rms@gnu.org>
date Fri, 20 May 1994 21:22:22 +0000
parents 9f361177d70c
children bc5dccc5375f
comparison
equal deleted inserted replaced
7590:e70581cde056 7591:d1a839615554
196 bookmark-file, which is `~/.emacs-bkmrks' by default.") 196 bookmark-file, which is `~/.emacs-bkmrks' by default.")
197 197
198 (defvar bookmark-alist-modification-count 0 198 (defvar bookmark-alist-modification-count 0
199 "Number of modifications to bookmark list since it was last saved.") 199 "Number of modifications to bookmark list since it was last saved.")
200 200
201 (defvar bookmark-file "~/.emacs-bkmrks" 201 (defvar bookmark-file
202 (if (eq system-type 'ms-dos)
203 "~/emacs.bmk" ; Cannot have initial dot [Yuck!]
204 "~/.emacs-bkmrks")
202 "*File in which to save bookmarks by default.") 205 "*File in which to save bookmarks by default.")
203 206
204 (defvar bookmark-version-control 'nospecial 207 (defvar bookmark-version-control 'nospecial
205 "Control whether to make numbered backups of the master bookmark file. 208 "Control whether to make numbered backups of the master bookmark file.
206 This variable can have four values: t, nil, `never', and `nospecial'. 209 This variable can have four values: t, nil, `never', and `nospecial'.