Function: check-completion-length

check-completion-length is a byte-compiled function defined in completion.el.gz.

Signature

(check-completion-length STRING)

Source Code

;; Defined in /usr/src/emacs/lisp/completion.el.gz
(defun check-completion-length (string)
  (if (< (length string) completion-min-length)
      (user-error "The string `%s' is too short to be saved as a completion"
                  string)
      (list string)))