summaryrefslogtreecommitdiff
path: root/gtk/gtkbindings.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-05 13:07:34 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-05 15:08:42 -0500
commit2a45418b673d10f60e9334ebcfa493f125d26e02 (patch)
treebd459a39a8aae3ade27524b5e1199eb38d972c25 /gtk/gtkbindings.c
parentc3dfb17031842458e86907e8c1d3a1ca4c442a8c (diff)
downloadgtk+-2a45418b673d10f60e9334ebcfa493f125d26e02.tar.gz
docs: use proper quotes
Diffstat (limited to 'gtk/gtkbindings.c')
-rw-r--r--gtk/gtkbindings.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtkbindings.c b/gtk/gtkbindings.c
index 4ad9c9a813..15dbb12f27 100644
--- a/gtk/gtkbindings.c
+++ b/gtk/gtkbindings.c
@@ -88,7 +88,7 @@
* precedence over the default bindings shipped with GTK+, overriding
* existing bindings as demonstrated in
* <link linkend="gtk-bindings-install">Installing a key binding</link>
- * works as expected. The same mechanism can not be used to "unbind"
+ * works as expected. The same mechanism can not be used to “unbind”
* existing bindings, however.
*
* |[
@@ -104,15 +104,15 @@
* ]|
*
* The above example will not have the desired effect of causing
- * "&lt;Control&gt;Right" and "&lt;Control&gt;Left" key presses to
+ * “&lt;Control&gt;Right” and “&lt;Control&gt;Left” key presses to
* be ignored by GTK+. Instead, it just causes any existing bindings
- * from the bindings set "MoveCursor3" to be deleted, so when
- * "&lt;Control&gt;Right" or "&lt;Control&gt;Left" are pressed, no
- * binding for these keys is found in binding set "MoveCursor3".
+ * from the bindings set “MoveCursor3” to be deleted, so when
+ * “&lt;Control&gt;Right” or “&lt;Control&gt;Left” are pressed, no
+ * binding for these keys is found in binding set “MoveCursor3”.
* GTK+ will thus continue to search for matching key bindings, and
* will eventually lookup and find the default GTK+ bindings for
* entries which implement word movement. To keep GTK+ from activating
- * its default bindings, the "unbind" keyword can be used like this:
+ * its default bindings, the “unbind” keyword can be used like this:
*
* |[
* @binding-set MoveCursor3
@@ -126,9 +126,9 @@
* }
* ]|
*
- * Now, GTK+ will find a match when looking up "&lt;Control&gt;Right"
- * and "&lt;Control&gt;Left" key presses before it resorts to its default
- * bindings, and the match instructs it to abort ("unbind") the search,
+ * Now, GTK+ will find a match when looking up “&lt;Control&gt;Right”
+ * and “&lt;Control&gt;Left” key presses before it resorts to its default
+ * bindings, and the match instructs it to abort (“unbind”) the search,
* so the key presses are not consumed by this widget. As usual, further
* processing of the key presses, e.g. by an entry's parent widget, is
* now possible.