diff options
| author | Gerd Moellmann | 2000-01-09 18:21:26 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-01-09 18:21:26 +0000 |
| commit | 9ed79f5d1a079d11efa7dd71581709df73b6ed53 (patch) | |
| tree | a99584e0c057e22a9cea0bec109f3239bbb10b8b | |
| parent | b950abb18592326edcae27979aa5c86fb53d3565 (diff) | |
| download | emacs-9ed79f5d1a079d11efa7dd71581709df73b6ed53.tar.gz emacs-9ed79f5d1a079d11efa7dd71581709df73b6ed53.zip | |
(texinfo-format-scan): Use ?\n instead
of a real newline.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/texinfmt.el | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e9d6dfa83d6..3f34bec18e5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-01-09 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead | ||
| 4 | of a real newline. | ||
| 5 | |||
| 1 | 2000-01-09 Stephen Eglen <stephen@gnu.org> | 6 | 2000-01-09 Stephen Eglen <stephen@gnu.org> |
| 2 | 7 | ||
| 3 | * dired-x.el (dired-guess-shell-alist-default): Suggest xv | 8 | * dired-x.el (dired-guess-shell-alist-default): Suggest xv |
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index c83327cb4e8..f8b05f37d5d 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el | |||
| @@ -858,8 +858,7 @@ lower types.") | |||
| 858 | (if (not (= (following-char) ?\n)) | 858 | (if (not (= (following-char) ?\n)) |
| 859 | (insert ? ))) | 859 | (insert ? ))) |
| 860 | ;; following char is a carriage return | 860 | ;; following char is a carriage return |
| 861 | ((= (following-char) ? | 861 | ((= (following-char) ?\n) |
| 862 | ) | ||
| 863 | ;; remove command | 862 | ;; remove command |
| 864 | (delete-region (1- (point)) (1+ (point))) | 863 | (delete-region (1- (point)) (1+ (point))) |
| 865 | ;; insert single space if not at end of line; | 864 | ;; insert single space if not at end of line; |