* std11.el (std11-field-end): Return end of field correctly
authoryoichi <yoichi>
Tue, 29 Apr 2003 16:02:21 +0000 (16:02 +0000)
committeryoichi <yoichi>
Tue, 29 Apr 2003 16:02:21 +0000 (16:02 +0000)
even in case of existence of invisible header.

ChangeLog
std11.el

index 8e3ec14..6301882 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-04-30  Yoichi NAKAYAMA  <yoichi@geiin.org>
+
+       * std11.el (std11-field-end): Return end of field correctly
+       even in case of existence of invisible header.
+
 2003-02-05  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
 
        * eword-encode.el (mime-encode-header-in-buffer):
index 246181f..f82c641 100644 (file)
--- a/std11.el
+++ b/std11.el
@@ -43,10 +43,8 @@ The optional argument BOUNDs the search; it is a buffer position."
       (goto-char (match-beginning 0))
     (if (re-search-forward "^$" bound t)
        (goto-char (1- (match-beginning 0)))
-      (end-of-line)
-      ))
-  (point)
-  )
+      (end-of-line))
+    (point)))
 
 ;;;###autoload
 (defun std11-fetch-field (name)