mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
m-v corrections.
This commit is contained in:
parent
7c730dd6e1
commit
b3f5a84631
2 changed files with 4 additions and 1 deletions
|
|
@ -8,9 +8,12 @@
|
|||
|
||||
2009-03-13 D. Goel <deego3@gmail.com>
|
||||
|
||||
|
||||
* ibuf-ext.el:
|
||||
When calling (multiple-value-bind/setq .. ls)
|
||||
ls -> (values-list ls) throughout.
|
||||
|
||||
* progmodes/flymake.el (flymake-float-time): Ditto.
|
||||
|
||||
* progmodes/ebrowse.el: Ditto.
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue