]> git.eshelyaron.com Git - emacs.git/commitdiff
(texinfo-append-refill): Redefine the types of line to which @refill
authorRobert J. Chassell <bob@rattlesnake.com>
Fri, 4 Mar 2005 13:54:44 +0000 (13:54 +0000)
committerRobert J. Chassell <bob@rattlesnake.com>
Fri, 4 Mar 2005 13:54:44 +0000 (13:54 +0000)
is not appended by replacing a search for `@refill\\|@bye' with
`@refill\\|^[ \t]*@'.  The intent is to solve both the `@end
itemize@refill' bug and the unfilled long lines bug.
(texinfmt-version): update number and date.

lisp/textmodes/texinfmt.el

index 4664c633866b4c381866a2abb0c1cf48219f7a23..e478169c250e49efd29f35af1dd9e14ad4754382 100644 (file)
@@ -37,7 +37,7 @@
     (defmacro defcustom (var value doc &rest ignore)
       `(defvar ,var ,value ,doc)))
 
-(defvar texinfmt-version "2.40 of  6 Dec 2002")
+(defvar texinfmt-version "2.41 of  1 Mar 2005")
 
 (defun texinfmt-version (&optional here)
   "Show the version of texinfmt.el in the minibuffer.
@@ -637,7 +637,7 @@ Do not append @refill to paragraphs containing @w{TEXT} or @*."
            (forward-char 1)
            (unless (re-search-backward "@c[ \t\n]\\|@comment[ \t\n]" line-beg t)
              (forward-char -1))
-           (unless (re-search-backward "@refill\\|@bye" line-beg t)
+           (unless (re-search-backward "@refill\\|^[ \t]*@" line-beg t)
              (insert "@refill")))
           (forward-line 1))))))