# HG changeset patch # User Gerd Moellmann # Date 947442013 0 # Node ID 650eddd41858aa8111b8ad9dc4f23d2fa79f8205 # Parent 5347d5379b2d4d099326dc8549a7cbf1c5412a0f (texinfo-format-scan): Use ?\n instead of a real newline. diff -r 5347d5379b2d -r 650eddd41858 lisp/textmodes/texinfmt.el --- a/lisp/textmodes/texinfmt.el Sun Jan 09 17:19:23 2000 +0000 +++ b/lisp/textmodes/texinfmt.el Sun Jan 09 18:20:13 2000 +0000 @@ -858,8 +858,7 @@ (if (not (= (following-char) ?\n)) (insert ? ))) ;; following char is a carriage return - ((= (following-char) ? -) + ((= (following-char) ?\n) ;; remove command (delete-region (1- (point)) (1+ (point))) ;; insert single space if not at end of line;