# HG changeset patch # User Richard M. Stallman # Date 784560844 0 # Node ID a70b9992633936ee5e6a31694d119ef43f77824f # Parent 924f7b9ce544e80125d79b74782b9ce7f6cc8f14 (texinfo-format-node): Insert the node delimiter that info is looking for unconditionally. diff -r 924f7b9ce544 -r a70b99926339 lisp/textmodes/texinfmt.el --- a/lisp/textmodes/texinfmt.el Fri Nov 11 07:35:27 1994 +0000 +++ b/lisp/textmodes/texinfmt.el Fri Nov 11 13:34:04 1994 +0000 @@ -924,9 +924,8 @@ (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))