From fc71550113a1089428163c57872e9922e9bc2a5d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 1 Sep 1996 19:04:28 +0000 Subject: [PATCH] (desktop-basefilename): Use convert-standard-filename. --- lisp/desktop.el | 4 +--- 1 file changed, 1 insertion(+), 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 -- 2.11.4.GIT