diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/info.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index eb41fff8c9a..6154c25e6db 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-12-03 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * info.el (Info-fontify-node): Don't hide the last newline. | ||
| 4 | (Bug#12272) | ||
| 5 | |||
| 1 | 2012-12-01 Leo Liu <sdl.web@gmail.com> | 6 | 2012-12-01 Leo Liu <sdl.web@gmail.com> |
| 2 | 7 | ||
| 3 | * files.el (dir-locals-read-from-file): Check file non-empty | 8 | * files.el (dir-locals-read-from-file): Check file non-empty |
diff --git a/lisp/info.el b/lisp/info.el index 36ffa806f04..1e15dcbc9a0 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -4826,8 +4826,8 @@ first line or header line, and for breadcrumb links.") | |||
| 4826 | ;; Hide empty lines at the end of the node. | 4826 | ;; Hide empty lines at the end of the node. |
| 4827 | (goto-char (point-max)) | 4827 | (goto-char (point-max)) |
| 4828 | (skip-chars-backward "\n") | 4828 | (skip-chars-backward "\n") |
| 4829 | (when (< (1+ (point)) (point-max)) | 4829 | (when (< (point) (1- (point-max))) |
| 4830 | (put-text-property (1+ (point)) (point-max) 'invisible t)) | 4830 | (put-text-property (point) (1- (point-max)) 'invisible t)) |
| 4831 | 4831 | ||
| 4832 | (set-buffer-modified-p nil)))) | 4832 | (set-buffer-modified-p nil)))) |
| 4833 | 4833 | ||