(gnus-news-translate-file): Fix previous commit.
authorReiner Steib <Reiner.Steib@gmx.de>
Tue, 13 Dec 2005 11:27:47 +0000 (11:27 +0000)
committerReiner Steib <Reiner.Steib@gmx.de>
Tue, 13 Dec 2005 11:27:47 +0000 (11:27 +0000)
texi/ChangeLog
texi/gnus-news.el

index 5a9875f..6af8a77 100644 (file)
@@ -1,3 +1,7 @@
+2005-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * gnus-news.el (gnus-news-translate-file): Fix previous commit.
+
 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus.texi (MIME Commands): Mention addition of
index 65c59d4..df35446 100644 (file)
@@ -96,16 +96,16 @@ paragraph-separate: \"[     \f]*$\"\nend:\n")
       (goto-char (point-max))
       (delete-char -1)
       (goto-char (point-min))
-      ;; Avoid `*' from @ref at beginning of line:
-      (save-excursion
-       (while (re-search-forward "^\\*Note" nil t)
-         (replace-match " \\&")))
       (save-excursion
        (while (re-search-forward "^   \\* " nil t)
          (replace-match "** ")))
       (save-excursion
        (while (re-search-forward "^     " nil t)
          (replace-match "")))
+      ;; Avoid `*' from @ref at beginning of line:
+      (save-excursion
+       (while (re-search-forward "^\\*Note" nil t)
+         (replace-match " \\&")))
       (goto-char (point-min))
       (insert gnus-news-header-disclaimer)
       (goto-char (point-max))