From: Thien-Thi Nguyen Date: Tue, 17 Jul 2007 16:10:13 +0000 (+0000) Subject: (bookmark-show-all-annotations): X-Git-Tag: emacs-pretest-22.1.90~1245 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=23fe28f248284aeaefc144cbe6fbd3884992f938;p=emacs.git (bookmark-show-all-annotations): Make sure each inserted annotation ends with newline. --- diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 3c1469fef97..816ed8b182e 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -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 " ")