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:
parent
ccae01a639
commit
01c52d3165
166 changed files with 27871 additions and 9376 deletions
|
@ -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'.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue