Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
49b545fe
Commit
49b545fe
authored
Sep 17, 2005
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(url-mailto): Special case `mail'.
Don't test fboundp of `compose-mail'.
parent
cfbc3a32
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
lisp/url/url-mailto.el
lisp/url/url-mailto.el
+5
-5
No files found.
lisp/url/url-mailto.el
View file @
49b545fe
...
...
@@ -92,11 +92,11 @@
(
setq
args
(
cons
(
list
"to"
to
)
args
))))
(
setq
subject
(
cdr-safe
(
assoc
"subject"
args
)))
(
if
(
fboundp
url-mail-command
)
(
if
(
eq
url-mail-command
'compose-mail
)
(
compose-mail
nil
nil
nil
'new
)
(
funcall
url-mail-command
)
)
(
mail
'new
))
(
if
(
eq
url-mail-command
'compose-mail
)
(
compose-mail
nil
nil
nil
'new
)
(
if
(
eq
url-mail-command
'mail
)
(
mail
'new
)
(
funcall
url-mail-command
)
))
(
while
args
(
if
(
string=
(
caar
args
)
"body"
)
(
progn
...
...
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