mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-30 11:09:23 +00:00
(texinfo-format-scan): Use ?\n instead
of a real newline.
This commit is contained in:
parent
b950abb185
commit
9ed79f5d1a
@ -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>
|
||||
|
||||
* dired-x.el (dired-guess-shell-alist-default): Suggest xv
|
||||
|
@ -858,8 +858,7 @@ lower types.")
|
||||
(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;
|
||||
|
Loading…
Reference in New Issue
Block a user