Function: timer-list--idle-predicate

timer-list--idle-predicate is a byte-compiled function defined in timer-list.el.gz.

Signature

(timer-list--idle-predicate A B)

Documentation

Predicate to sort Timer-List by the Idle column.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/timer-list.el.gz
(defun timer-list--idle-predicate (A B)
  "Predicate to sort Timer-List by the Idle column."
  (let ((iA (aref (cadr A) 0))
        (iB (aref (cadr B) 0)))
    (cond ((string= iA iB)
           (timer-list--next-predicate A B))
          ((string= iA "   *") nil)
          (t t))))