summaryrefslogtreecommitdiff
path: root/gobject/genums.c
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2013-05-20 17:54:48 -0300
committerDan Winship <danw@gnome.org>2013-05-21 11:23:22 -0300
commit4b94c0831e449374ce769cb4938a28b3dca59a43 (patch)
tree28f53ec4bc4bd8e224e9747e90f87f9308a119bc /gobject/genums.c
parent52f6a7d16250d2b180c83cce8929f3e14972e1a9 (diff)
Use 'dumb quotes' rather than `really dumb quotes'
Back in the far-off twentieth century, it was normal on unix workstations for U+0060 GRAVE ACCENT to be drawn as "‛" and for U+0027 APOSTROPHE to be drawn as "’". This led to the convention of using them as poor-man's ‛smart quotes’ in ASCII-only text. However, "'" is now universally drawn as a vertical line, and "`" at a 45-degree angle, making them an `odd couple' when used together. Unfortunately, there are lots of very old strings in glib, and also lots of new strings in which people have kept up the old tradition, perhaps entirely unaware that it used to not look stupid. Fix this by just using 'dumb quotes' everywhere. https://bugzilla.gnome.org/show_bug.cgi?id=700746
Diffstat (limited to 'gobject/genums.c')
-rw-r--r--gobject/genums.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gobject/genums.c b/gobject/genums.c
index 1b3411f38..474e791c0 100644
--- a/gobject/genums.c
+++ b/gobject/genums.c
@@ -156,7 +156,7 @@ value_flags_enum_lcopy_value (const GValue *value,
gint *int_p = collect_values[0].v_pointer;
if (!int_p)
- return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value));
+ return g_strdup_printf ("value location for '%s' passed as NULL", G_VALUE_TYPE_NAME (value));
*int_p = value->data[0].v_long;