aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeepak Goel2009-03-13 20:37:43 +0000
committerDeepak Goel2009-03-13 20:37:43 +0000
commitb3f5a84631ed93ed59075a7eb9dfd63dca6bad79 (patch)
tree13c7f5f0fff444f81f2e5e0734288c904d114ede
parent7c730dd6e1f4a7bd904aee53d295d8352b48b328 (diff)
downloademacs-b3f5a84631ed93ed59075a7eb9dfd63dca6bad79.tar.gz
emacs-b3f5a84631ed93ed59075a7eb9dfd63dca6bad79.zip
m-v corrections.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/progmodes/flymake.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 21c19c8b95b..13bc6595658 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -8,9 +8,12 @@
8 8
92009-03-13 D. Goel <deego3@gmail.com> 92009-03-13 D. Goel <deego3@gmail.com>
10 10
11
11 * ibuf-ext.el: 12 * ibuf-ext.el:
12 When calling (multiple-value-bind/setq .. ls) 13 When calling (multiple-value-bind/setq .. ls)
13 ls -> (values-list ls) throughout. 14 ls -> (values-list ls) throughout.
15
16 * progmodes/flymake.el (flymake-float-time): Ditto.
14 17
15 * progmodes/ebrowse.el: Ditto. 18 * progmodes/ebrowse.el: Ditto.
16 19
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 @@
79 'float-time 79 'float-time
80 (if (featurep 'xemacs) 80 (if (featurep 'xemacs)
81 (lambda () 81 (lambda ()
82 (multiple-value-bind (s0 s1 s2) (current-time) 82 (multiple-value-bind (s0 s1 s2) (values-list (current-time))
83 (+ (* (float (ash 1 16)) s0) (float s1) (* 0.0000001 s2))))))) 83 (+ (* (float (ash 1 16)) s0) (float s1) (* 0.0000001 s2)))))))
84 84
85(defalias 'flymake-replace-regexp-in-string 85(defalias 'flymake-replace-regexp-in-string