Mercurial > hg > xemacs-beta
diff lisp/gnus/gnus-group.el @ 100:4be1180a9e89 r20-1b2
Import from CVS: tag r20-1b2
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:15:11 +0200 |
parents | 0d2f883870bc |
children | cf808b4c4290 |
line wrap: on
line diff
--- a/lisp/gnus/gnus-group.el Mon Aug 13 09:13:58 2007 +0200 +++ b/lisp/gnus/gnus-group.el Mon Aug 13 09:15:11 2007 +0200 @@ -155,7 +155,7 @@ %l Whether there are GroupLens predictions for this group (string) %n Select from where (string) %z A string that look like `<%s:%n>' if a foreign select method is used -?d The date the group was last entered. +%d The date the group was last entered. %u User defined specifier. The next character in the format string should be a letter. Gnus will call the function gnus-user-format-function-X, where X is the letter following %u. The function will be passed the @@ -1208,7 +1208,7 @@ (mode-string (eval gformat))) ;; Say whether the dribble buffer has been modified. (setq mode-line-modified - (if modified "---*- " "----- ")) + (if modified "--**- " "----- ")) ;; If the line is too long, we chop it off. (when (> (length mode-string) max-len) (setq mode-string (substring mode-string 0 (- max-len 4)))) @@ -1413,10 +1413,7 @@ (setq n (1- n)) (gnus-group-next-group way))) (nreverse groups))) - ((and (boundp 'transient-mark-mode) - transient-mark-mode - (boundp 'mark-active) - mark-active) + ((gnus-region-active-p) ;; Work on the region between point and mark. (let ((max (max (point) (mark))) groups) @@ -1501,6 +1498,7 @@ (require 'gnus-score) (let (gnus-visual gnus-score-find-score-files-function + gnus-home-score-file gnus-apply-kill-hook gnus-summary-expunge-below) (gnus-group-read-group all t))) @@ -1882,11 +1880,12 @@ (t info)) ;; The proper documentation. (format - "Editing the %s." + "Editing the %s for `%s'." (cond ((eq part 'method) "select method") ((eq part 'params) "group parameters") - (t "group info"))) + (t "group info")) + group) `(lambda (form) (gnus-group-edit-group-done ',part ,group form)))))