]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/gnus/message.el (message--fold-long-headers): Add docstring
authorOleh Krehel <ohwoeowho@gmail.com>
Thu, 6 Jun 2019 13:50:46 +0000 (15:50 +0200)
committerOleh Krehel <ohwoeowho@gmail.com>
Thu, 6 Jun 2019 13:50:46 +0000 (15:50 +0200)
lisp/gnus/message.el

index d3f6ec3c34e797a3b09f3381f879555b97ddd7be..4da5565a5236c78d0bd91c8e02efee91b5144a8c 100644 (file)
@@ -4536,8 +4536,6 @@ This function could be useful in `message-setup-hook'."
            (forward-line 1)
            (unless (y-or-n-p "Send anyway? ")
              (error "Failed to send the message")))))
-      ;; Fold too-long header lines.  They should be no longer than
-      ;; 998 octets long.
       (message--fold-long-headers)
       ;; Let the user do all of the above.
       (run-hooks 'message-header-hook))
@@ -4637,10 +4635,12 @@ If you always want Gnus to send messages in one piece, set
     (push 'mail message-sent-message-via)))
 
 (defun message--fold-long-headers ()
+  "Fold too-long header lines.
+They should be no longer than 998 octets long."
   (goto-char (point-min))
   (while (not (eobp))
     (when (and (looking-at "[^:]+:")
-              (> (- (line-end-position) (point)) 998))
+               (> (- (line-end-position) (point)) 998))
       (mail-header-fold-field))
     (forward-line 1)))