Variable: tempo-insert-string-functions
tempo-insert-string-functions is a variable defined in tempo.el.gz.
Value
nil
Documentation
List of functions to run when inserting a string.
Each function is called with a single arg, STRING and should return another string. This could be used for making all strings upcase by setting it to (upcase), for example.
Source Code
;; Defined in /usr/src/emacs/lisp/tempo.el.gz
;;; Internal variables
(defvar tempo-insert-string-functions nil
"List of functions to run when inserting a string.
Each function is called with a single arg, STRING and should return
another string. This could be used for making all strings upcase by
setting it to (upcase), for example.")