diff options
Diffstat (limited to 'e-util/e-name-selector-entry.c')
-rw-r--r-- | e-util/e-name-selector-entry.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/e-util/e-name-selector-entry.c b/e-util/e-name-selector-entry.c index a50c886e9c..5a6519c39b 100644 --- a/e-util/e-name-selector-entry.c +++ b/e-util/e-name-selector-entry.c @@ -511,10 +511,10 @@ is_quoted_at (const gchar *string, gunichar c = g_utf8_get_char (p); if (c == '"') - quoted = ~quoted; + quoted = !quoted; } - return quoted ? TRUE : FALSE; + return quoted; } static gint @@ -530,7 +530,7 @@ get_index_at_position (const gchar *string, gunichar c = g_utf8_get_char (p); if (c == '"') - quoted = ~quoted; + quoted = !quoted; else if (c == ',' && !quoted) n++; } |