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
df0e3d03
Commit
df0e3d03
authored
May 04, 1994
by
Richard M. Stallman
Browse files
(rmail-output-menu): Don't call expand-file-name.
Do nothing if rmail-secondary-file-menu return nil.
parent
68e01f5a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
lisp/mail/rmailout.el
lisp/mail/rmailout.el
+6
-4
No files found.
lisp/mail/rmailout.el
View file @
df0e3d03
...
...
@@ -38,11 +38,13 @@ or more generally it may be any kind of expression that returns
a file name as a string."
)
(
defun
rmail-output-menu
(
event
)
"Output current message to another Rmail file, chosen with a menu."
"Output current message to another Rmail file, chosen with a menu.
The variables `rmail-secondary-file-directory' and
`rmail-secondary-file-regexp' control which files are offered in the menu."
(
interactive
"e"
)
(
rmail-output-to-rmail-file
(
expand-
file-name
(
rmail-secondary-file-menu
event
)
rmail-secondary-file-directory
)))
(
let
((
file-name
(
rmail-secondary-file-menu
event
)))
(
if
file-name
(
rmail-output-to-rmail-file
file-name
)
)))
;;; There are functions elsewhere in Emacs that use this function; check
;;; them out before you change the calling method.
...
...
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