Function: abbrev--suggest-count-words
abbrev--suggest-count-words is a byte-compiled function defined in
abbrev.el.gz.
Signature
(abbrev--suggest-count-words EXPANSION)
Documentation
Return the number of words in EXPANSION.
Expansion is a string of one or more words.
Source Code
;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
(defun abbrev--suggest-count-words (expansion)
"Return the number of words in EXPANSION.
Expansion is a string of one or more words."
(length (split-string expansion " " t)))