Function: pulse-reset-face

pulse-reset-face is a byte-compiled function defined in pulse.el.gz.

Signature

(pulse-reset-face &optional FACE)

Documentation

Reset the pulse highlighting FACE.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/pulse.el.gz
(defun pulse-reset-face (&optional face)
  "Reset the pulse highlighting FACE."
  (set-face-background 'pulse-highlight-face
		       (if face
			   (face-background face nil t)
			 (face-background 'pulse-highlight-start-face)
			 ))
  (set-face-extend 'pulse-highlight-face
                   (face-extend-p (or face 'pulse-highlight-start-face)
                                  nil t))
  (put 'pulse-highlight-face :startface (or face
					    'pulse-highlight-start-face))
  (setq pulse-momentary-iteration 0))