diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-09-01 19:04:28 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-09-01 19:04:28 +0000 |
commit | fc71550113a1089428163c57872e9922e9bc2a5d (patch) | |
tree | 972134add231c69037f1ecc8c0eaf85aef636677 /lisp/desktop.el | |
parent | 88fb0aaae4782f57f48c55c0c50f5eb04e80ef6e (diff) | |
download | emacs-fc71550113a1089428163c57872e9922e9bc2a5d.tar.gz |
(desktop-basefilename): Use convert-standard-filename.
Diffstat (limited to 'lisp/desktop.el')
-rw-r--r-- | lisp/desktop.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/desktop.el b/lisp/desktop.el index bdcc1a8d113..1eee466697a 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el @@ -105,9 +105,7 @@ ;; USER OPTIONS -- settings you might want to play with. ;; ---------------------------------------------------------------------------- (defconst desktop-basefilename - (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") + (convert-standard-filename ".emacs.desktop") "File for Emacs desktop, not including the directory name.") (defvar desktop-missing-file-warning t |