At 8:35 PM EDT on October 10 Roland Rosenfeld sent off:
> But I added a new bug with this, because double quoted lines (like the
> following) with a quote sign in the middle of the line were not
> colored at all:
>
> > > foo bar 2>1
>
> The attached patch should fix this problem (hopefully without
> introducing others...)
--
``I base most of my fashion taste on what doesn't itch.''
--- Gilda Radner
Robert I. Reid <[EMAIL PROTECTED]> http://astro.utoronto.ca/~reid/
PGP Key: http://astro.utoronto.ca/~reid/pgp.html
--- post.el 1999/10/08 10:43:18 1.6.3.9
+++ post.el 1999/10/11 00:30:30
@@ -4,7 +4,7 @@
;; Dave Pearson <[EMAIL PROTECTED]>,
;; Rob Reid <[EMAIL PROTECTED]>,
;; Roland Rosenfeld <[EMAIL PROTECTED]>
-;; Version: $Revision: 1.6.3.9 $
+;; Version: $Revision: 1.6.3.10 $
;; This is free software distributed under the GPL, yadda, yadda, yadda.
;; It has no warranty. See the GNU General Public License for more
@@ -66,6 +66,10 @@
;;; Revision History
;;;
;;; $Log: post.el,v $
+;;; Revision 1.6.3.10 1999/10/11 00:29:41 roland
+;;; Corrected color quoting again: Now allows ">" in the middel of
+;;; a line which is quoted twice.
+;;;
;;; Revision 1.6.3.9 1999/10/08 10:43:18 roland
;;; Add third level of quoting faces.
;;; Allow super-cite name prefixes before quote signs.
@@ -437,13 +441,13 @@
'(("^\\([A-Z][-A-Za-z0-9.]+:\\)\\(.*\\)$"
(1 'post-header-keyword-face)
(2 'post-header-value-face))
- ("^[ \t\f]*\\(>[ \t\f]*\\)\\([-a-zA-Z]*>[^>\n]*\\)$"
- (1 'post-quoted-text-face)
- (2 'post-double-quoted-text-face))
("^[ \t\f]*\\(>[ \t\f]*\\)\\([-a-zA-Z]*>[ \t\f]*\\)\\([-a-zA-Z]*>.*\\)$"
(1 'post-quoted-text-face)
(2 'post-double-quoted-text-face)
(3 'post-multiply-quoted-text-face))
+ ("^[ \t\f]*\\(>[ \t\f]*\\)\\([-a-zA-Z]*>.*\\)$"
+ (1 'post-quoted-text-face)
+ (2 'post-double-quoted-text-face))
("^[ \t\f]*\\(>[ \t\f]*[^ \t\f\n>].*\\)$"
(1 'post-quoted-text-face))
("^[ \t\f]*\\(>[ \t\f]*\\)$"
PGP signature