aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen <[email protected]>2011-03-15 22:43:25 +0000
committerKatsumi Yamaoka <[email protected]>2011-03-15 22:43:25 +0000
commit448e0f792ba882b1876d2715865c870e1d24d505 (patch)
tree0c61332c4fd4334c7be120c967f9738a50e3ec8a
parenta123622dc48a5f0e0eb32c07ce05c85e16e09c1d (diff)
Indent.
-rw-r--r--lisp/gnus/gnus-sum.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index bc572f2f42..0fa1d5979c 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -5849,12 +5849,14 @@ If SELECT-ARTICLES, only select those articles from GROUP."
(read-string
(format
"How many articles from %s (available %d, default %d): "
- (gnus-group-decoded-name (gnus-group-real-name gnus-newsgroup-name))
+ (gnus-group-decoded-name
+ (gnus-group-real-name gnus-newsgroup-name))
number
(or initial gnus-large-newsgroup))
nil
nil
- (number-to-string (or initial gnus-large-newsgroup)))))
+ (number-to-string
+ (or initial gnus-large-newsgroup)))))
(if (string-match "^[ \t]*$" input) number input)))
((and (> scored marked) (< scored number)
(> (- scored number) 20))
@@ -5862,7 +5864,8 @@ If SELECT-ARTICLES, only select those articles from GROUP."
(read-string
(format "%s %s (%d scored, %d total): "
"How many articles from"
- (gnus-group-decoded-name (gnus-group-real-name gnus-newsgroup-name))
+ (gnus-group-decoded-name
+ (gnus-group-real-name gnus-newsgroup-name))
scored number))))
(if (string-match "^[ \t]*$" input)
number input)))