Variable: repeat-message-function
repeat-message-function is a variable defined in repeat.el.gz.
Value
nil
Documentation
If non-nil, function used by repeat command to say what it's doing.
Message is something like "Repeating command glorp".
A value of ignore will disable such messages. To customize
display, assign a function that takes one string as an arg and
displays it however you want.
If this variable is nil, the normal message function will be
used to display the messages.
Source Code
;; Defined in /usr/src/emacs/lisp/repeat.el.gz
;; If the last command was self-insert-command, the char to be inserted was
;; obtained by that command from last-command-event, which has now been
;; clobbered by the command sequence that invoked `repeat'. We could get it
;; from (recent-keys) & set last-command-event to that, "unclobbering" it, but
;; this has the disadvantage that if the user types a sequence of different
;; chars then invokes repeat, only the final char will be inserted. In vi,
;; the dot command can reinsert the entire most-recently-inserted sequence.
(defvar repeat-message-function nil
"If non-nil, function used by `repeat' command to say what it's doing.
Message is something like \"Repeating command glorp\".
A value of `ignore' will disable such messages. To customize
display, assign a function that takes one string as an arg and
displays it however you want.
If this variable is nil, the normal `message' function will be
used to display the messages.")