summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu.vizoso@collabora.com>2013-02-13 15:44:06 +0100
committerJasper St. Pierre <jstpierre@mecheye.net>2013-03-14 17:56:36 -0400
commit9281a1c19143dc42fd2289183b670c711a5f817f (patch)
tree062f170fac07633b34546dd7fe73a5f5975235ee
parenta3826987e6f43141c4402e3059e20dc70bd5fb6b (diff)
downloadmutter-9281a1c19143dc42fd2289183b670c711a5f817f.tar.gz
Escape a few < and > from the API docs
https://bugzilla.gnome.org/show_bug.cgi?id=676856
-rw-r--r--src/core/keybindings.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/keybindings.c b/src/core/keybindings.c
index 8a2dcec5f..480837944 100644
--- a/src/core/keybindings.c
+++ b/src/core/keybindings.c
@@ -645,13 +645,13 @@ add_builtin_keybinding (MetaDisplay *display,
*
* Add a keybinding at runtime. The key @name in @schema needs to be of
* type %G_VARIANT_TYPE_STRING_ARRAY, with each string describing a
- * keybinding in the form of "<Control>a" or "<Shift><Alt>F1". The parser
+ * keybinding in the form of "&lt;Control&gt;a" or "&lt;Shift&gt;&lt;Alt&gt;F1". The parser
* is fairly liberal and allows lower or upper case, and also abbreviations
- * such as "<Ctl>" and "<Ctrl>". If the key is set to the empty list or a
+ * such as "&lt;Ctl&gt;" and "&lt;Ctrl&gt;". If the key is set to the empty list or a
* list with a single element of either "" or "disabled", the keybinding is
* disabled.
* If %META_KEY_BINDING_REVERSES is specified in @flags, the binding
- * may be reversed by holding down the "shift" key; therefore, "<Shift>"
+ * may be reversed by holding down the "shift" key; therefore, "&lt;Shift&gt;"
* cannot be one of the keys used. @handler is expected to check for the
* "shift" modifier in this case and reverse its action.
*