Update Gnus to No Gnus 0.7 from the Gnus CVS trunk

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-911
This commit is contained in:
Miles Bader 2007-10-28 09:18:39 +00:00
parent ccae01a639
commit 01c52d3165
166 changed files with 27871 additions and 9376 deletions

View file

@ -49,6 +49,19 @@ jabbering all the time."
:type 'integer
:group 'gmm)
;;;###autoload
(defun gmm-regexp-concat (regexp)
"Potentially concat a list of regexps into a single one.
The concatenation is done with logical ORs."
(cond ((null regexp)
nil)
((stringp regexp)
regexp)
((listp regexp)
(mapconcat (lambda (elt) (concat "\\(" elt "\\)"))
regexp
"\\|"))))
;;;###autoload
(defun gmm-message (level &rest args)
"If LEVEL is lower than `gmm-verbose' print ARGS using `message'.