aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compose.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/compose.c b/src/compose.c
index 5f9730c5..b8e4b853 100644
--- a/src/compose.c
+++ b/src/compose.c
@@ -2393,6 +2393,12 @@ static gboolean compose_is_itemized(GtkTextBuffer *buffer,
wc = gtk_text_iter_get_char(&iter);
if (g_unichar_isspace(wc))
return TRUE;
+ else if (ch[0] == '-') {
+ /* -- */
+ clen = g_unichar_to_utf8(wc, ch);
+ if (clen == 1 && ch[0] == '-')
+ return TRUE;
+ }
return FALSE;
}