Function: bookmark-bmenu--file-predicate
bookmark-bmenu--file-predicate is a byte-compiled function defined in
bookmark.el.gz.
Signature
(bookmark-bmenu--file-predicate A B)
Documentation
Predicate to sort "*Bookmark List*" buffer by the file column.
This is used for tabulated-list-format in bookmark-bmenu-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu--file-predicate (a b)
"Predicate to sort \"*Bookmark List*\" buffer by the file column.
This is used for `tabulated-list-format' in `bookmark-bmenu-mode'."
(string-collate-lessp (bookmark-location (car a))
(bookmark-location (car b))
nil t))