1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

(texinfo-format-scan): Use ?\n instead

of a real newline.
This commit is contained in:
Gerd Moellmann 2000-01-09 18:21:26 +00:00
parent b950abb185
commit 9ed79f5d1a
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-01-09 Gerd Moellmann <gerd@gnu.org>
* textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
of a real newline.
2000-01-09 Stephen Eglen <stephen@gnu.org> 2000-01-09 Stephen Eglen <stephen@gnu.org>
* dired-x.el (dired-guess-shell-alist-default): Suggest xv * dired-x.el (dired-guess-shell-alist-default): Suggest xv

View File

@ -858,8 +858,7 @@ lower types.")
(if (not (= (following-char) ?\n)) (if (not (= (following-char) ?\n))
(insert ? ))) (insert ? )))
;; following char is a carriage return ;; following char is a carriage return
((= (following-char) ? ((= (following-char) ?\n)
)
;; remove command ;; remove command
(delete-region (1- (point)) (1+ (point))) (delete-region (1- (point)) (1+ (point)))
;; insert single space if not at end of line; ;; insert single space if not at end of line;