[gnus git] branch master updated: m0-7-253-g852d65f =1= * nndoc.el (nndoc-type-alist): Support debbugs .log files.
Ted Zlatanov <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 852d65fb565743a193d30838cc8e5dde64bbbb3c (commit)
from a35f25ab6b239d72a4d082cb72679b6777637b4e (commit)
- Log -----------------------------------------------------------------
commit 852d65fb565743a193d30838cc8e5dde64bbbb3c
Author: Ted Zlatanov <[email protected]>
Date: Thu Nov 21 12:11:43 2013 -0500
* nndoc.el (nndoc-type-alist): Support debbugs .log files.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5f20942..b8d3c93 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2013-11-21 Ivan Shmakov <[email protected]> (tiny change)
+
+ * nndoc.el (nndoc-type-alist, nndoc-debbugs-db-type-p): Support debbugs
+ .log files.
+
2013-11-20 David Engster <[email protected]>
* lpath.el: Fix XEmacs warning for `beginning-of-visual-line'.
diff --git a/lisp/nndoc.el b/lisp/nndoc.el
index b17a7a6..69ac2e8 100644
--- a/lisp/nndoc.el
+++ b/lisp/nndoc.el
@@ -56,6 +56,10 @@ from the document.")
`((mmdf
(article-begin . "^\^A\^A\^A\^A\n")
(body-end . "^\^A\^A\^A\^A\n"))
+ (debbugs-db
+ (file-begin . "^\005")
+ (article-begin . "^[\005\007]\n")
+ (body-end . "^\003"))
(mime-digest
(article-begin . "")
(head-begin . "^ ?\n")
@@ -460,6 +464,10 @@ from the document.")
(when (looking-at "\^A\^A\^A\^A$")
t))
+(defun nndoc-debbugs-db-type-p ()
+ (when (looking-at "\006$")
+ t))
+
(defun nndoc-news-type-p ()
(when (looking-at "^Path:.*\n")
t))
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 5 +++++
lisp/nndoc.el | 8 ++++++++
2 files changed, 13 insertions(+)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project