Function: dabbrev--find-all-expansions
dabbrev--find-all-expansions is a byte-compiled function defined in
dabbrev.el.gz.
Signature
(dabbrev--find-all-expansions ABBREV IGNORE-CASE)
Documentation
Return a list of all possible expansions of ABBREV.
If IGNORE-CASE is non-nil, accept matches which differ in case.
Source Code
;; Defined in /usr/src/emacs/lisp/dabbrev.el.gz
(defun dabbrev--find-all-expansions (abbrev ignore-case)
"Return a list of all possible expansions of ABBREV.
If IGNORE-CASE is non-nil, accept matches which differ in case."
(let ((all-expansions nil)
expansion)
(save-excursion
(goto-char (point-min))
(while (setq expansion (dabbrev--find-expansion abbrev -1 ignore-case))
(setq all-expansions (cons expansion all-expansions))))
all-expansions))