Function: abbrev--suggest-get-active-tables-including-parents

abbrev--suggest-get-active-tables-including-parents is a byte-compiled function defined in abbrev.el.gz.

Signature

(abbrev--suggest-get-active-tables-including-parents)

Documentation

Return a list of all active abbrev tables, including parent tables.

Source Code

;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
(defun abbrev--suggest-get-active-tables-including-parents ()
  "Return a list of all active abbrev tables, including parent tables."
  (let* ((tables (abbrev--active-tables))
	 (all tables))
    (dolist (table tables)
      (setq all (append (abbrev-table-get table :parents) all)))
    all))