aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2011-12-29 00:12:22 +0000
committerGerald Combs <gerald@wireshark.org>2011-12-29 00:12:22 +0000
commitdc9a4de8c996a2d3fa330f254a92515915c75d17 (patch)
tree68b1a665810d795f203739481ccfac34860f38b7 /gtk
parent6b178bd41548b561913be45a6ee649a497ec5d1f (diff)
Add PLACE_OF_INTEREST_SIGN, a.k.a. the OS X Command key symbol. Annotate
entries with their decimal and hexadecimal values. Add a modeline blurb. svn path=/trunk/; revision=40322
Diffstat (limited to 'gtk')
-rw-r--r--gtk/utf8_entities.h22
1 files changed, 18 insertions, 4 deletions
diff --git a/gtk/utf8_entities.h b/gtk/utf8_entities.h
index d7189fa323..b693b14459 100644
--- a/gtk/utf8_entities.h
+++ b/gtk/utf8_entities.h
@@ -33,9 +33,23 @@
* and other places
*/
-#define UTF8_HORIZONTAL_ELLIPSIS "\xe2\x80\xa6"
-#define UTF8_LEFTWARDS_ARROW "\xe2\x86\x90"
-#define UTF8_RIGHTWARDS_ARROW "\xe2\x86\x92"
-#define UTF8_LEFT_RIGHT_ARROW "\xe2\x86\x94"
+#define UTF8_HORIZONTAL_ELLIPSIS "\xe2\x80\xa6" /* 8230 / 0x2026 */
+#define UTF8_LEFTWARDS_ARROW "\xe2\x86\x90" /* 8592 / 0x2190 */
+#define UTF8_RIGHTWARDS_ARROW "\xe2\x86\x92" /* 8594 / 0x2192 */
+#define UTF8_LEFT_RIGHT_ARROW "\xe2\x86\x94" /* 8596 / 0x2194 */
+#define UTF8_PLACE_OF_INTEREST_SIGN "\xe2\x8c\x98" /* 8984 / 0x2318 */
#endif /* __UTF8_ENTITIES_H__ */
+
+/*
+ * Editor modelines
+ *
+ * Local Variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=4 tabstop=8 expandtab
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */