diff options
| author | Teodor Zlatanov | 2011-05-04 11:28:46 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2011-05-04 11:28:46 +0000 |
| commit | 67a2aecd40f802838d97f2aeb81f0a3698c68f62 (patch) | |
| tree | 132b851ae5ed2598802eb0edc7d8e2182fd15d84 | |
| parent | f330b642bb28e3b9ee5e14ac55c8103e6dcde412 (diff) | |
| download | emacs-67a2aecd40f802838d97f2aeb81f0a3698c68f62.tar.gz emacs-67a2aecd40f802838d97f2aeb81f0a3698c68f62.zip | |
registry.el (registry-reindex): Fix percentage message.
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/registry.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index a6d857ed660..49128552e00 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 2 | |||
| 3 | * registry.el (registry-reindex): Fix percentage message. | ||
| 4 | |||
| 1 | 2011-05-03 Teodor Zlatanov <tzz@lifelogs.com> | 5 | 2011-05-03 Teodor Zlatanov <tzz@lifelogs.com> |
| 2 | 6 | ||
| 3 | * shr.el: Add shr-link face for links. | 7 | * shr.el: Add shr-link face for links. |
diff --git a/lisp/gnus/registry.el b/lisp/gnus/registry.el index e82ca8d9b6f..51bfc9cde57 100644 --- a/lisp/gnus/registry.el +++ b/lisp/gnus/registry.el | |||
| @@ -298,7 +298,7 @@ Errors out if the key exists already." | |||
| 298 | (when (and (< 0 expected) | 298 | (when (and (< 0 expected) |
| 299 | (= 0 (mod count 1000))) | 299 | (= 0 (mod count 1000))) |
| 300 | (message "reindexing: %d of %d (%.2f%%)" | 300 | (message "reindexing: %d of %d (%.2f%%)" |
| 301 | count expected (/ (* 1000 count) expected))) | 301 | count expected (/ (* 100 count) expected))) |
| 302 | (dolist (val (cdr-safe (assq tr v))) | 302 | (dolist (val (cdr-safe (assq tr v))) |
| 303 | (let* ((value-keys (registry-lookup-secondary-value db tr val))) | 303 | (let* ((value-keys (registry-lookup-secondary-value db tr val))) |
| 304 | (push key value-keys) | 304 | (push key value-keys) |