# HG changeset patch # User Richard M. Stallman # Date 783668747 0 # Node ID fac1fe98b7a960255729a8f024f7d3493cf2d43b # Parent 3e99bdb36cbb0abd83f0a9d10ca6b2a508883aec (bookmark-file): Use ~/emacs.bmk on windows-nt. diff -r 3e99bdb36cbb -r fac1fe98b7a9 lisp/bookmark.el --- a/lisp/bookmark.el Tue Nov 01 05:45:04 1994 +0000 +++ b/lisp/bookmark.el Tue Nov 01 05:45:47 1994 +0000 @@ -199,7 +199,7 @@ "Number of modifications to bookmark list since it was last saved.") (defvar bookmark-file - (if (eq system-type 'ms-dos) + (if (or (eq system-type 'ms-dos) (eq system-type 'windows-nt)) "~/emacs.bmk" ; Cannot have initial dot [Yuck!] "~/.emacs-bkmrks") "*File in which to save bookmarks by default.")