Remove unused and erroneous midnight-time-float

This commit is contained in:
Leo Liu 2011-03-26 06:11:15 +08:00
parent 2ecf6fdb28
commit 1f48f7d236
2 changed files with 4 additions and 6 deletions

View file

@ -1,5 +1,9 @@
2011-03-25 Leo Liu <sdl.web@gmail.com>
* midnight.el (midnight-time-float): Remove. Note it calculates
the microsecond component incorrectly and seconds-to-time does the
same job.
* ido.el (ido-read-internal): Simplify with read-from-minibuffer.
(ido-completions): Remove unused arguments. (Bug#8329)

View file

@ -66,12 +66,6 @@ call `cancel-timer' or `timer-activate' on `midnight-timer' instead."
;;; time conversion
(defun midnight-time-float (num)
"Convert the float number of seconds since epoch to the list of 3 integers."
(let* ((div (ash 1 16)) (1st (floor num div)))
(list 1st (floor (- num (* (float div) 1st)))
(round (* 10000000 (mod num 1))))))
(defun midnight-buffer-display-time (&optional buffer)
"Return the time-stamp of BUFFER, or current buffer, as float."
(with-current-buffer (or buffer (current-buffer))