Function: default-command-history-filter

default-command-history-filter is a byte-compiled function defined in chistory.el.gz.

Signature

(default-command-history-filter FROB)

Documentation

Filter commands matching default-command-history-filter-garbage list from the command history.

Source Code

;; Defined in /usr/src/emacs/lisp/chistory.el.gz
(defun default-command-history-filter (frob)
  "Filter commands matching `default-command-history-filter-garbage' list
from the command history."
  (or (not (consp frob))
      (memq (car frob) default-command-history-filter-garbage)))