]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/simple.el (rfc822-goto-eoh): Give it a doc-string.
authorGlenn Morris <rgm@gnu.org>
Thu, 17 Feb 2011 07:43:53 +0000 (23:43 -0800)
committerGlenn Morris <rgm@gnu.org>
Thu, 17 Feb 2011 07:43:53 +0000 (23:43 -0800)
lisp/ChangeLog
lisp/simple.el

index 638342739e14a29e8e7e9b3608ec2cd33a5f520e..98a9e06e406642510cb1e19de920b5ee92f62e86 100644 (file)
@@ -1,5 +1,7 @@
 2011-02-17  Glenn Morris  <rgm@gnu.org>
 
+       * simple.el (rfc822-goto-eoh): Give it a doc-string.
+
        * log-edit.el (log-edit-insert-changelog):
        Fix `log-edit-strip-single-file-name' functionality.  (Bug#8057)
 
index 6e26e33437257356bebafe605370c84273d7b341..8f37c8e5f0b83ba08756b123a293561ababf47d2 100644 (file)
@@ -5585,7 +5585,10 @@ appears to have customizations applying to the old default,
   'mail-send-and-exit)
 
 (defun rfc822-goto-eoh ()
-  ;; Go to header delimiter line in a mail message, following RFC822 rules
+  "If the buffer starts with a mail header, move point to the header's end.
+Otherwise, moves to `point-min'.
+The end of the header is the start of the next line, if there is one,
+else the end of the last line.  This function obeys RFC822."
   (goto-char (point-min))
   (when (re-search-forward
         "^\\([:\n]\\|[^: \t\n]+[ \t\n]\\)" nil 'move)