Changes committed gnus/lisp (ChangeLog mml2015.el)
"Reiner Steib" <[email protected]>
| Newsgroups | gmane.emacs.gnus.commits |
|---|---|
| Message-ID | <[email protected]> |
Modified: ChangeLog mml2015.el (mml2015-extract-cleartext-signature): Explain that it doesn't handle NotDashEscaped. Index: ChangeLog diff -u gnus/lisp/ChangeLog:7.1773 gnus/lisp/ChangeLog:7.1774 --- ChangeLog:7.1773 Sun Mar 2 18:35:16 2008 +++ ChangeLog Sun Mar 2 18:43:01 2008 @@ -1,5 +1,8 @@ 2008-03-02 Reiner Steib <[email protected]> + * mml2015.el (mml2015-extract-cleartext-signature): Explain that it + doesn't handle NotDashEscaped. + * mml.el (mml-menu): Improve help entries. Move Sign/Encrypt Part. (mml-dnd-attach-options): Fix typo in custom choice. Index: mml2015.el diff -u gnus/lisp/mml2015.el:7.51 gnus/lisp/mml2015.el:7.52 --- mml2015.el:7.51 Sun Feb 10 08:46:55 2008 +++ mml2015.el Sun Mar 2 18:43:01 2008 @@ -153,6 +153,17 @@ ;; should be done by GnuPG rather than Elisp, but older PGP backends ;; (such as Mailcrypt, PGG, and gpg.el) discard the output from GnuPG. (defun mml2015-extract-cleartext-signature () + ;; Daiki Ueno in + ;; <[email protected]>: ``I still + ;; believe that the right way is to use the plaintext output from GnuPG as + ;; it is, and mml2015-extract-cleartext-signature is just a kludge for + ;; misdesigned libraries like PGG, which have no ability to do that. So, I + ;; think it should not have descriptive documentation.'' + ;; + ;; This function doesn't handle NotDashEscaped correctly. EasyPG handles it + ;; correctly. + ;; http://thread.gmane.org/gmane.emacs.gnus.general/66062/focus=66082 + ;; http://thread.gmane.org/gmane.emacs.gnus.general/65087/focus=65109 (goto-char (point-min)) (forward-line) ;; We need to be careful not to strip beyond the armor headers.