]> git.eshelyaron.com Git - emacs.git/commitdiff
(texinfo-format-node): Insert the node delimiter
authorRichard M. Stallman <rms@gnu.org>
Fri, 11 Nov 1994 13:34:04 +0000 (13:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 11 Nov 1994 13:34:04 +0000 (13:34 +0000)
that info is looking for unconditionally.

lisp/textmodes/texinfmt.el

index 60d6232a90e8ec62806a79c531a6f3ed94b937ca..d9cfffb3fd6c20a1d7ecc4dbe3215d41fa694a00 100644 (file)
@@ -924,9 +924,8 @@ lower types.")
           (error "Duplicate node name: %s" name)
         (setq texinfo-node-names (cons (list tem) texinfo-node-names))))
     (setq texinfo-footnote-number 0)
-    (or (bolp)
-        (insert ?\n))
-    (insert "\^_\nFile: " texinfo-format-filename
+    ;; insert "\n\^_" unconditionally since this is what info is looking for
+    (insert "\n\^_\nFile: " texinfo-format-filename
             ", Node: " name)
     (if next
         (insert ", Next: " next))