]> git.eshelyaron.com Git - emacs.git/commitdiff
(desktop-basefilename): Use emacs.dsk on windows-nt.
authorRichard M. Stallman <rms@gnu.org>
Tue, 1 Nov 1994 05:46:57 +0000 (05:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 1 Nov 1994 05:46:57 +0000 (05:46 +0000)
lisp/desktop.el

index a9fc0e226f14110b20a2d7c8622f9cb01e0e51e9..0a27b90b392071d8ae883361bbc6a9f310dcb19f 100644 (file)
 ;; USER OPTIONS -- settings you might want to play with.
 ;; ----------------------------------------------------------------------------
 (defconst desktop-basefilename
-  (if (eq system-type 'ms-dos)
+  (if (or (eq system-type 'ms-dos) (eq system-type 'windows-nt))
       "emacs.dsk" ; Ms-Dos does not support multiple dots in file name
     ".emacs.desktop")
   "File for Emacs desktop.  A directory name will be prepended to this name.")