diff options
Diffstat (limited to 'lisp/progmodes/flymake.el')
-rw-r--r-- | lisp/progmodes/flymake.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 20fd68aa959..549bf4abe63 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -79,7 +79,7 @@ 'float-time (if (featurep 'xemacs) (lambda () - (multiple-value-bind (s0 s1 s2) (current-time) + (multiple-value-bind (s0 s1 s2) (values-list (current-time)) (+ (* (float (ash 1 16)) s0) (float s1) (* 0.0000001 s2))))))) (defalias 'flymake-replace-regexp-in-string |