[Xfce4-commits] <postler:master> Recognise '>>' in addtion to '> ' as quote start
Christian Dywan
noreply at xfce.org
Tue Feb 8 19:16:05 CET 2011
Updating branch refs/heads/master
to 0ea494b7af0794e51e0a1ea6a5131677a6458a7c (commit)
from 43e711f75d2fa370f3027f4139d557dddaf0799e (commit)
commit 0ea494b7af0794e51e0a1ea6a5131677a6458a7c
Author: Christian Dywan <christian at twotoasts.de>
Date: Mon Feb 7 11:48:28 2011 +0100
Recognise '>>' in addtion to '> ' as quote start
postler/postler-content.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/postler/postler-content.vala b/postler/postler-content.vala
index 0162c1b..ddb8ce0 100644
--- a/postler/postler-content.vala
+++ b/postler/postler-content.vala
@@ -906,7 +906,7 @@ public class Postler.Content : WebKit.WebView {
line = "";
}
/* Looks like quoting */
- if (in_quote > 0 || line.has_prefix ("> ")) {
+ if (in_quote > 0 || line.has_prefix ("> ") || line.has_prefix (">>")) {
/* Determine level of nesting */
int quote_mark = 0;
int position = 0;
More information about the Xfce4-commits
mailing list