From 0884ddc14a8f81a9c4b5e82fed67db3899a400fd Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 8 May 2002 08:19:58 +0000 Subject: [PATCH] Synch with Oort Gnus. --- lisp/ChangeLog | 6 ++++++ lisp/gnus-art.el | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 135052f..bdec535 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2002-05-08 Kai Gro,A_(Bjohann + + * gnus-art.el (gnus-article-mode-syntax-table): Specify matching + parenthesis for "<" and ">". Suggested by Andreas Schwab + . + 2002-05-07 Kai Gro,A_(Bjohann * nnmail.el (nnmail-cache-insert): Prefer group-art over group diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el index 7ab2441..e0e2c86 100644 --- a/lisp/gnus-art.el +++ b/lisp/gnus-art.el @@ -1388,8 +1388,8 @@ It is a string, such as \"PGP\". If nil, ask user." (let ((table (copy-syntax-table text-mode-syntax-table))) ;; This causes the citation match run O(2^n). ;; (modify-syntax-entry ?- "w" table) - (modify-syntax-entry ?> ")" table) - (modify-syntax-entry ?< "(" table) + (modify-syntax-entry ?> ")<" table) + (modify-syntax-entry ?< "(>" table) table) "Syntax table used in article mode buffers. Initialized from `text-mode-syntax-table.") -- 1.7.10.4