Function: hanoi-put-face
hanoi-put-face is a byte-compiled function defined in hanoi.el.gz.
Signature
(hanoi-put-face START END VALUE &optional OBJECT)
Documentation
If hanoi-use-faces is non-nil, call put-text-property for face property.
Source Code
;; Defined in /usr/src/emacs/lisp/play/hanoi.el.gz
(defun hanoi-put-face (start end value &optional object)
"If `hanoi-use-faces' is non-nil, call `put-text-property' for face property."
(if hanoi-use-faces
(put-text-property start end 'face value object)))