Function: try-expand-dabbrev-all-buffers
try-expand-dabbrev-all-buffers is a byte-compiled function defined in
hippie-exp.el.gz.
Signature
(try-expand-dabbrev-all-buffers OLD)
Documentation
Try to expand word "dynamically", searching all other buffers.
The argument OLD has to be nil the first call of this function, and t for subsequent calls (for further possible expansions of the same string). It returns t if a new expansion is found, nil otherwise.
Source Code
;; Defined in /usr/src/emacs/lisp/hippie-exp.el.gz
(defun try-expand-dabbrev-all-buffers (old)
"Try to expand word \"dynamically\", searching all other buffers.
The argument OLD has to be nil the first call of this function, and t
for subsequent calls (for further possible expansions of the same
string). It returns t if a new expansion is found, nil otherwise."
(he--all-buffers old #'he-dabbrev-beg #'he-dabbrev-search))