aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/cedet/pulse.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cedet/pulse.el b/lisp/cedet/pulse.el
index d9f6a40865a..53256ba3a81 100644
--- a/lisp/cedet/pulse.el
+++ b/lisp/cedet/pulse.el
@@ -158,7 +158,7 @@ Optional argument FACE specifies the face to do the highlighting."
158 (face-background 'pulse-highlight-face nil 'default))) 158 (face-background 'pulse-highlight-face nil 'default)))
159 (stop (color-name-to-rgb (face-background 'default))) 159 (stop (color-name-to-rgb (face-background 'default)))
160 (colors (mapcar (apply-partially 'apply 'color-rgb-to-hex) 160 (colors (mapcar (apply-partially 'apply 'color-rgb-to-hex)
161 (color-gradient start stop pulse-iterations)))) 161 (cons start (color-gradient start stop (1- pulse-iterations))))))
162 (setq pulse-momentary-timer 162 (setq pulse-momentary-timer
163 (run-with-timer 0 pulse-delay #'pulse-tick 163 (run-with-timer 0 pulse-delay #'pulse-tick
164 colors 164 colors