diff options
| author | Deepak Goel | 2009-03-13 19:43:38 +0000 |
|---|---|---|
| committer | Deepak Goel | 2009-03-13 19:43:38 +0000 |
| commit | f5fbd9ad219df87e468dd3a35b6df37af5f49d6b (patch) | |
| tree | a3c8ac96e0d0b55bca11176baad605b993742e00 | |
| parent | bf020df6ea28468be7d6e75b458ce0ab73cc1e91 (diff) | |
| download | emacs-f5fbd9ad219df87e468dd3a35b6df37af5f49d6b.tar.gz emacs-f5fbd9ad219df87e468dd3a35b6df37af5f49d6b.zip | |
M-v correctness.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/ibuf-ext.el | 9 | ||||
| -rw-r--r-- | lisp/midnight.el | 3 |
3 files changed, 15 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index be344f5d971..9f8704ef1ae 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2009-03-13 D. Goel <deego3@gmail.com> | ||
| 2 | |||
| 3 | * midnight.el (midnight-next): Ditto. | ||
| 4 | |||
| 5 | * ibuf-ext.el (ibuffer-generate-filter-groups): | ||
| 6 | (multiple-value-bind .. ls) -> (multiple-value-bind | ||
| 7 | .. (values-list ls)) | ||
| 8 | |||
| 1 | 2009-03-13 Agustín Martín <agustin.martin@hispalinux.es> | 9 | 2009-03-13 Agustín Martín <agustin.martin@hispalinux.es> |
| 2 | 10 | ||
| 3 | * textmodes/ispell.el (ispell-get-word): Initialize spellchecker | 11 | * textmodes/ispell.el (ispell-get-word): Initialize spellchecker |
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el index fb68345be94..73c5840aefa 100644 --- a/lisp/ibuf-ext.el +++ b/lisp/ibuf-ext.el | |||
| @@ -544,10 +544,11 @@ To evaluate a form without viewing the buffer, see `ibuffer-do-eval'." | |||
| 544 | (dolist (filtergroup filter-group-alist) | 544 | (dolist (filtergroup filter-group-alist) |
| 545 | (let ((filterset (cdr filtergroup))) | 545 | (let ((filterset (cdr filtergroup))) |
| 546 | (multiple-value-bind (hip-crowd lamers) | 546 | (multiple-value-bind (hip-crowd lamers) |
| 547 | (ibuffer-split-list (lambda (bufmark) | 547 | (values-list |
| 548 | (ibuffer-included-in-filters-p (car bufmark) | 548 | (ibuffer-split-list (lambda (bufmark) |
| 549 | filterset)) | 549 | (ibuffer-included-in-filters-p (car bufmark) |
| 550 | bmarklist) | 550 | filterset)) |
| 551 | bmarklist)) | ||
| 551 | (aset vec i hip-crowd) | 552 | (aset vec i hip-crowd) |
| 552 | (incf i) | 553 | (incf i) |
| 553 | (setq bmarklist lamers)))) | 554 | (setq bmarklist lamers)))) |
diff --git a/lisp/midnight.el b/lisp/midnight.el index 710c9fafe0b..a3546fe7ad4 100644 --- a/lisp/midnight.el +++ b/lisp/midnight.el | |||
| @@ -205,7 +205,8 @@ The default value is `clean-buffer-list'." | |||
| 205 | 205 | ||
| 206 | (defun midnight-next () | 206 | (defun midnight-next () |
| 207 | "Return the number of seconds till the next midnight." | 207 | "Return the number of seconds till the next midnight." |
| 208 | (multiple-value-bind (sec min hrs) (decode-time) | 208 | (multiple-value-bind (sec min hrs) |
| 209 | (values-list (decode-time)) | ||
| 209 | (- (* 24 60 60) (* 60 60 hrs) (* 60 min) sec))) | 210 | (- (* 24 60 60) (* 60 60 hrs) (* 60 min) sec))) |
| 210 | 211 | ||
| 211 | ;;;###autoload | 212 | ;;;###autoload |