M-v correctness.
This commit is contained in:
parent
bf020df6ea
commit
f5fbd9ad21
3 changed files with 15 additions and 5 deletions
|
|
@ -1,3 +1,11 @@
|
|||
2009-03-13 D. Goel <deego3@gmail.com>
|
||||
|
||||
* midnight.el (midnight-next): Ditto.
|
||||
|
||||
* ibuf-ext.el (ibuffer-generate-filter-groups):
|
||||
(multiple-value-bind .. ls) -> (multiple-value-bind
|
||||
.. (values-list ls))
|
||||
|
||||
2009-03-13 Agustín Martín <agustin.martin@hispalinux.es>
|
||||
|
||||
* textmodes/ispell.el (ispell-get-word): Initialize spellchecker
|
||||
|
|
|
|||
|
|
@ -544,10 +544,11 @@ To evaluate a form without viewing the buffer, see `ibuffer-do-eval'."
|
|||
(dolist (filtergroup filter-group-alist)
|
||||
(let ((filterset (cdr filtergroup)))
|
||||
(multiple-value-bind (hip-crowd lamers)
|
||||
(ibuffer-split-list (lambda (bufmark)
|
||||
(ibuffer-included-in-filters-p (car bufmark)
|
||||
filterset))
|
||||
bmarklist)
|
||||
(values-list
|
||||
(ibuffer-split-list (lambda (bufmark)
|
||||
(ibuffer-included-in-filters-p (car bufmark)
|
||||
filterset))
|
||||
bmarklist))
|
||||
(aset vec i hip-crowd)
|
||||
(incf i)
|
||||
(setq bmarklist lamers))))
|
||||
|
|
|
|||
|
|
@ -205,7 +205,8 @@ The default value is `clean-buffer-list'."
|
|||
|
||||
(defun midnight-next ()
|
||||
"Return the number of seconds till the next midnight."
|
||||
(multiple-value-bind (sec min hrs) (decode-time)
|
||||
(multiple-value-bind (sec min hrs)
|
||||
(values-list (decode-time))
|
||||
(- (* 24 60 60) (* 60 60 hrs) (* 60 min) sec)))
|
||||
|
||||
;;;###autoload
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue