comparison lisp/startup.el @ 90951:3619e7770f2e

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 793-802) - Update from CVS - Remove RCS keywords - Merge from emacs--rel--22 * emacs--rel--22 (patch 42-50) - Update from CVS - Merge from gnus--rel--5.10 - Gnus ChangeLog tweaks * gnus--rel--5.10 (patch 229-232) - Merge from emacs--devo--0, emacs--rel--22 - ChangeLog tweak - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-223
author Miles Bader <miles@gnu.org>
date Sat, 16 Jun 2007 22:32:13 +0000
parents e9f94688a064 0e3f82f9067d
children 988f1edc9674
comparison
equal deleted inserted replaced
90950:8568c29985a3 90951:3619e7770f2e
261 :group 'mail) 261 :group 'mail)
262 262
263 (defcustom auto-save-list-file-prefix 263 (defcustom auto-save-list-file-prefix
264 (cond ((eq system-type 'ms-dos) 264 (cond ((eq system-type 'ms-dos)
265 ;; MS-DOS cannot have initial dot, and allows only 8.3 names 265 ;; MS-DOS cannot have initial dot, and allows only 8.3 names
266 "~/_emacs.d/auto-save.list/_s") 266 (concat user-emacs-directory "auto-save.list/_s"))
267 (t 267 (t
268 "~/.emacs.d/auto-save-list/.saves-")) 268 (concat user-emacs-directory "auto-save-list/.saves-")))
269 "Prefix for generating `auto-save-list-file-name'. 269 "Prefix for generating `auto-save-list-file-name'.
270 This is used after reading your `.emacs' file to initialize 270 This is used after reading your `.emacs' file to initialize
271 `auto-save-list-file-name', by appending Emacs's pid and the system name, 271 `auto-save-list-file-name', by appending Emacs's pid and the system name,
272 if you have not already set `auto-save-list-file-name' yourself. 272 if you have not already set `auto-save-list-file-name' yourself.
273 Directories in the prefix will be created if necessary. 273 Directories in the prefix will be created if necessary.