Function: semantic-completion-message

semantic-completion-message is a byte-compiled function defined in complete.el.gz.

Signature

(semantic-completion-message FMT &rest ARGS)

Documentation

Display the string FMT formatted with ARGS at the end of the minibuffer.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(defun semantic-completion-message (fmt &rest args)
  "Display the string FMT formatted with ARGS at the end of the minibuffer."
  (if semantic-complete-inline-overlay
      (apply #'message fmt args)
    (apply #'message (concat "%s" fmt) (buffer-string) args)))