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
db3ca487
Commit
db3ca487
authored
Jul 24, 2000
by
Noah Friedman
Browse files
(menu-bar-files-menu [recover-session]): Make sure auto save directory
exists before calling directory-files.
parent
f7ad1899
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
6 deletions
+13
-6
lisp/ChangeLog
lisp/ChangeLog
+10
-5
lisp/menu-bar.el
lisp/menu-bar.el
+3
-1
No files found.
lisp/ChangeLog
View file @
db3ca487
2000-07-23 Noah Friedman <friedman@splode.com>
* menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
auto save directory exists before calling directory-files.
2000-07-23 Dave Love <fx@gnu.org>
* international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
...
...
@@ -31,7 +36,7 @@
* timer.el (run-with-idle-timer): Doc fix.
* mail/mail-utils.el (mail-strip-quoted-names):
* mail/mail-utils.el (mail-strip-quoted-names):
Handle case where <...> appears inside "...".
Use replace-match to edit the string more simply.
(rmail-dont-reply-to): Cope with an unmatched ".
...
...
@@ -59,8 +64,8 @@
* gnus/parse-time.el: Correct author's mail address.
2000-07-19 Colin Walters <walters@cis.ohio-state.edu>
* comint.el (comint-highlight-input, comint-highlight-face):
* comint.el (comint-highlight-input, comint-highlight-face):
New user options.
(comint-input-ring-file-name): Change custom type.
(comint-mode-map): Bind mouse-2.
...
...
@@ -81,7 +86,7 @@
* faces.el (face-font-selection-order)
(face-font-family-alternatives): Add custom type.
2000-07-18 Dave Love <fx@gnu.org>
* cus-edit.el (custom-variable-reset-saved)
...
...
@@ -111,7 +116,7 @@
* recentf.el: Update from author.
* info.el (Info-title-face-alist): Removed.
2000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
* eshell/eshell.el (eshell): Replace links to eshell.info with
...
...
lisp/menu-bar.el
View file @
db3ca487
...
...
@@ -124,7 +124,9 @@ A large number or nil slows down menu responsiveness."
(
define-key
menu-bar-files-menu
[recover-session]
'
(
menu-item
"Recover Crashed Session..."
recover-session
:enable
(
and
auto-save-list-file-prefix
(
directory-files
(
file-directory-p
(
file-name-directory
auto-save-list-file-prefix
))
(
directory-files
(
file-name-directory
auto-save-list-file-prefix
)
nil
(
concat
"\\`"
...
...
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