Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
73f13e5a
Commit
73f13e5a
authored
Apr 24, 2000
by
Gerd Moellmann
Browse files
(auto-save-list-file-prefix): Set default to
`~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
parent
b272d624
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
lisp/startup.el
lisp/startup.el
+6
-3
No files found.
lisp/startup.el
View file @
73f13e5a
...
...
@@ -317,13 +317,16 @@ after your init file is read, in case it sets `mail-host-address'."
:group
'mail
)
(
defcustom
auto-save-list-file-prefix
(
if
(
eq
system-type
'ms-dos
)
"~/_s"
; MS-DOS cannot have initial dot, and allows only 8.3 names
"~/.saves-"
)
(
cond
((
eq
system-type
'ms-dos
)
;; MS-DOS cannot have initial dot, and allows only 8.3 names
"~/_s"
)
(
t
"~/.emacs.d/auto-save-list/.saves-"
))
"Prefix for generating `auto-save-list-file-name'.
This is used after reading your `.emacs' file to initialize
`auto-save-list-file-name', by appending Emacs's pid and the system name,
if you have not already set `auto-save-list-file-name' yourself.
Directories in the prefix will be created if necessary.
Set this to nil if you want to prevent `auto-save-list-file-name'
from being initialized."
:type
'
(
choice
(
const
:tag
"Don't record a session's auto save list"
nil
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment