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
18e90c58
Commit
18e90c58
authored
Nov 14, 1993
by
Richard M. Stallman
Browse files
(rmail-summary-forward): Accept prefix arg
and pass it to rmail-forward.
parent
5dd1ad8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
lisp/mail/rmailsum.el
lisp/mail/rmailsum.el
+6
-4
No files found.
lisp/mail/rmailsum.el
View file @
18e90c58
...
...
@@ -994,12 +994,14 @@ the body of the original message; otherwise copy the current message."
(
interactive
)
(
mail-send-and-exit
t
))
(
defun
rmail-summary-forward
()
"Forward the current message to another user."
(
interactive
)
(
defun
rmail-summary-forward
(
resend
)
"Forward the current message to another user.
With prefix argument, \"resend\" the message instead of forwarding it;
see the documentation of `rmail-resend'."
(
interactive
"P"
)
(
save-excursion
(
set-buffer
rmail-buffer
)
(
rmail-forward
)
(
rmail-forward
resend
)
(
use-local-map
(
copy-keymap
(
current-local-map
)))
(
define-key
(
current-local-map
)
"\C-c\C-c"
'rmail-summary-send-and-exit
)))
...
...
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