Add page breaks during conversion to avoid seeing them in the manual.
authorRomain Francoise <romain@orebokech.com>
Thu, 30 Mar 2006 19:49:44 +0000 (19:49 +0000)
committerRomain Francoise <romain@orebokech.com>
Thu, 30 Mar 2006 19:49:44 +0000 (19:49 +0000)
texi/ChangeLog
texi/gnus-news.el

index 9a4f613..86b6bcd 100644 (file)
@@ -1,12 +1,11 @@
 2006-03-30  Romain Francoise  <romain@orebokech.com>
 
        * gnus-news.texi: Reorder entries in sections.  Fix typos.
-       Add local variables section.  Add page breaks.
+       Add local variables section.
 
        * gnus-news.el (gnus-news-header-disclaimer): Delete top section.
        (gnus-news-fill-column): Increment to 80.
-       (gnus-news-translate-file): Support nested list items.  Fix up
-       page breaks.
+       (gnus-news-translate-file): Support nested list items.
 
 2006-03-30  Reiner Steib  <Reiner.Steib@gmx.de>
 
index 45cf20c..3c25d99 100644 (file)
@@ -97,17 +97,13 @@ paragraph-separate: \"[     \f]*$\"\nend:\n")
       (goto-char (point-min))
       (save-excursion
        (while (re-search-forward "^   \\* " nil t)
-         (replace-match "* ")))
+         (replace-match "\f\n* ")))
       (save-excursion
        (while (re-search-forward "^        \\* " nil t)
          (replace-match "** ")))
       (save-excursion
        (while (re-search-forward "^     " nil t)
          (replace-match "")))
-      ;; Fix up extra newline after page breaks due to makeinfo
-      (save-excursion
-       (while (re-search-forward "\f\n" nil t)
-         (replace-match "\f")))
       ;; Avoid `*' from @ref at beginning of line:
       (save-excursion
        (while (re-search-forward "^\\*Note" nil t)