diff options
author | Bob Rogers <rogers@rgrjr.com> | 2022-02-06 01:07:43 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-02-06 01:07:54 +0100 |
commit | 821c240075e3b850a61207d18d520126292421ce (patch) | |
tree | de1e7d2530592fc3b860f6f70a21b5f67d8443a7 /lisp/mail | |
parent | 638247baa4a4f983cb3082496657d505fc3d0c09 (diff) | |
download | emacs-821c240075e3b850a61207d18d520126292421ce.tar.gz emacs-821c240075e3b850a61207d18d520126292421ce.tar.bz2 emacs-821c240075e3b850a61207d18d520126292421ce.zip |
Fix ietf-drums-get-comment doc string
* lisp/mail/ietf-drums.el (ietf-drums-get-comment): We really return
the last comment (bug#53810).
Diffstat (limited to 'lisp/mail')
-rw-r--r-- | lisp/mail/ietf-drums.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/ietf-drums.el b/lisp/mail/ietf-drums.el index 4a079591890..51c3e63e044 100644 --- a/lisp/mail/ietf-drums.el +++ b/lisp/mail/ietf-drums.el @@ -150,7 +150,7 @@ backslash and doublequote.") (buffer-string)))) (defun ietf-drums-get-comment (string) - "Return the first comment in STRING." + "Return the last comment in STRING." (with-temp-buffer (ietf-drums-init string) (let (result c) |