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
8fbee87c
Commit
8fbee87c
authored
Aug 14, 2005
by
Thien-Thi Nguyen
Browse files
Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
modification in `eval-after-load' form.
parent
7806e573
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
lisp/ChangeLog
lisp/ChangeLog
+1
-0
lisp/mail/rmail.el
lisp/mail/rmail.el
+3
-2
No files found.
lisp/ChangeLog
View file @
8fbee87c
...
...
@@ -3,6 +3,7 @@
* dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
modification in `eval-after-load' form.
* info.el: Likewise.
* mail/rmail.el: Likewise.
2005-08-14 Juri Linkov <juri@jurta.org>
...
...
lisp/mail/rmail.el
View file @
8fbee87c
...
...
@@ -4086,8 +4086,9 @@ encoded string (and the same mask) will decode the string."
(kill-buffer (current-buffer))
nil)))
(
add-to-list
'desktop-buffer-mode-handlers
'
(
rmail-mode
.
rmail-restore-desktop-buffer
))
(eval-after-load 'desktop
'(add-to-list 'desktop-buffer-mode-handlers
'(rmail-mode . rmail-restore-desktop-buffer)))
(provide 'rmail)
...
...
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