mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-16 02:50:26 -08:00
mml: Signal error on invalid <#secure> tag
* mml.el (mml-parse-1): Error out if unknown mode is specified in <#secure> tag (bug#18513).
This commit is contained in:
parent
85ee81a08f
commit
c8145320b2
2 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2014-09-29 Daiki Ueno <ueno@gnu.org>
|
||||
|
||||
* mml.el (mml-parse-1): Error out if unknown mode is specified in
|
||||
<#secure> tag (bug#18513).
|
||||
|
||||
2014-06-26 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* mm-util.el (help-function-arglist): Remove outdated declaration.
|
||||
|
|
|
|||
|
|
@ -260,7 +260,9 @@ part. This is for the internal use, you should never modify the value.")
|
|||
((string= mode "encrypt")
|
||||
(setq tags (list "encrypt" method)))
|
||||
((string= mode "signencrypt")
|
||||
(setq tags (list "sign" method "encrypt" method))))
|
||||
(setq tags (list "sign" method "encrypt" method)))
|
||||
(t
|
||||
(error "Unknown secure mode %s" mode)))
|
||||
(eval `(mml-insert-tag ,secure-mode
|
||||
,@tags
|
||||
,(if keyfile "keyfile")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue