comparison lisp/startup.el @ 28698:668b53a3e5f6

(auto-save-list-file-prefix): Set default to `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 24 Apr 2000 18:43:25 +0000
parents 22bde6ec328f
children a4c4a68597f5
comparison
equal deleted inserted replaced
28697:7d587a158d1f 28698:668b53a3e5f6
315 after your init file is read, in case it sets `mail-host-address'." 315 after your init file is read, in case it sets `mail-host-address'."
316 :type 'string 316 :type 'string
317 :group 'mail) 317 :group 'mail)
318 318
319 (defcustom auto-save-list-file-prefix 319 (defcustom auto-save-list-file-prefix
320 (if (eq system-type 'ms-dos) 320 (cond ((eq system-type 'ms-dos)
321 "~/_s" ; MS-DOS cannot have initial dot, and allows only 8.3 names 321 ;; MS-DOS cannot have initial dot, and allows only 8.3 names
322 "~/.saves-") 322 "~/_s")
323 (t
324 "~/.emacs.d/auto-save-list/.saves-"))
323 "Prefix for generating `auto-save-list-file-name'. 325 "Prefix for generating `auto-save-list-file-name'.
324 This is used after reading your `.emacs' file to initialize 326 This is used after reading your `.emacs' file to initialize
325 `auto-save-list-file-name', by appending Emacs's pid and the system name, 327 `auto-save-list-file-name', by appending Emacs's pid and the system name,
326 if you have not already set `auto-save-list-file-name' yourself. 328 if you have not already set `auto-save-list-file-name' yourself.
329 Directories in the prefix will be created if necessary.
327 Set this to nil if you want to prevent `auto-save-list-file-name' 330 Set this to nil if you want to prevent `auto-save-list-file-name'
328 from being initialized." 331 from being initialized."
329 :type '(choice (const :tag "Don't record a session's auto save list" nil) 332 :type '(choice (const :tag "Don't record a session's auto save list" nil)
330 string) 333 string)
331 :group 'auto-save) 334 :group 'auto-save)