Function: timer-list--function-predicate
timer-list--function-predicate is a byte-compiled function defined in
timer-list.el.gz.
Signature
(timer-list--function-predicate A B)
Documentation
Predicate to sort Timer-List by the Function column.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/timer-list.el.gz
(defun timer-list--function-predicate (A B)
"Predicate to sort Timer-List by the Function column."
(let ((fA (aref (cadr A) 3))
(fB (aref (cadr B) 3)))
(string< fA fB)))