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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
9cd78473
Commit
9cd78473
authored
Nov 23, 1993
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(rmail-summary-wipe): If rmail buffer is not visible,
switch to it in this window. (rmail-summary-mode): Doc fix.
parent
d6eb79ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
6 deletions
+18
-6
lisp/mail/rmailsum.el
lisp/mail/rmailsum.el
+18
-6
No files found.
lisp/mail/rmailsum.el
View file @
9cd78473
...
...
@@ -485,9 +485,22 @@ As commands are issued in the summary buffer, they are applied to the
corresponding mail messages in the rmail buffer.
All normal editing commands are turned off.
Instead, all of the Rmail Mode commands are available, plus:
Instead, nearly all the Rmail mode commands are available,
though many of them move only among the messages in the summary.
\\[rmail-summary-undelete-many] Undelete all or prefix arg deleted messages."
These additional commands exist:
\\[rmail-summary-undelete-many] Undelete all or prefix arg deleted messages.
\\[rmail-summary-wipe] Delete the summary and go to the Rmail buffer.
Commands for sorting the summary:
\\[rmail-summary-sort-by-date] Sort by date.
\\[rmail-summary-sort-by-subject] Sort by subject.
\\[rmail-summary-sort-by-author] Sort by author.
\\[rmail-summary-sort-by-recipient] Sort by recipient.
\\[rmail-summary-sort-by-correspondent] Sort by correspondent.
\\[rmail-summary-sort-by-lines] Sort by lines."
(
interactive
)
(
kill-all-local-variables
)
(
setq
major-mode
'rmail-summary-mode
)
...
...
@@ -765,14 +778,13 @@ Instead, all of the Rmail Mode commands are available, plus:
"Kill and wipe away Rmail summary, remaining within Rmail."
(
interactive
)
(
save-excursion
(
set-buffer
rmail-buffer
)
(
setq
rmail-summary-buffer
nil
))
(
let
((
rmail-wind
(
get-buffer-window
rmail-buffer
)
))
(
let
((
local-rmail-buffer
rmail-buffer
))
(
kill-buffer
(
current-buffer
))
;; Delete window if not only one.
(
if
(
not
(
eq
(
selected-window
)
(
next-window
nil
'no-minibuf
)))
(
delete-window
))
;; Switch to the rmail buffer in this window.
;; Select the window with rmail in it, then delete this window.
(
and
rmail-wind
(
select-window
rmail-wind
))))
;; Switch windows to the rmail buffer, or switch to it in this window.
(
pop-to-buffer
local-rmail-buffer
)))
(
defun
rmail-summary-expunge
()
"Actually erase all deleted messages and recompute summary headers."
...
...
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