diff options
author | Boruch Baum <boruch_baum@gmx.com> | 2015-03-25 21:43:51 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2015-03-25 21:43:51 -0400 |
commit | 3e0fc97befc105caf8d7519f1e6fd84c67a50a35 (patch) | |
tree | e7867480ab7d308c56662cc81ec47acbd4c81cdf /lisp/bookmark.el | |
parent | 124ea7763a64719a8d461217d25b7ac5b1cefd18 (diff) | |
download | emacs-3e0fc97befc105caf8d7519f1e6fd84c67a50a35.tar.gz |
* lisp/bookmark.el (bookmark-show-all-annotations): Sort them
Fixes: debbugs:20177
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r-- | lisp/bookmark.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el index a49ee7ec8b3..dc8057e6e0d 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -1756,7 +1756,7 @@ if an annotation exists." (save-selected-window (pop-to-buffer (get-buffer-create "*Bookmark Annotation*") t) (delete-region (point-min) (point-max)) - (dolist (full-record bookmark-alist) + (dolist (full-record (bookmark-maybe-sort-alist)) (let* ((name (bookmark-name-from-full-record full-record)) (ann (bookmark-get-annotation full-record))) (insert (concat name ":\n")) |