mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 08:43:40 -07:00
(bookmark-show-all-annotations):
Make sure each inserted annotation ends with newline.
This commit is contained in:
parent
73770b0319
commit
23fe28f248
1 changed files with 2 additions and 1 deletions
|
|
@ -1794,7 +1794,8 @@ if an annotation exists."
|
|||
(if (and ann (not (string-equal ann "")))
|
||||
;; insert the annotation, indented by 4 spaces.
|
||||
(progn
|
||||
(save-excursion (insert ann))
|
||||
(save-excursion (insert ann) (unless (bolp)
|
||||
(insert "\n")))
|
||||
(while (< (point) (point-max))
|
||||
(beginning-of-line) ; paranoia
|
||||
(insert " ")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue