summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-02-08 15:19:13 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-02-08 15:19:24 -0500
commitc4991d24ee58b5f116fc9cbe87c6fbb7ee7a731a (patch)
tree79a8cd1d46563d45c4550252fca06d317fb8e048
parentcd5cd874f0ae52d21accad24d27b0283352049a3 (diff)
downloadglib-c4991d24ee58b5f116fc9cbe87c6fbb7ee7a731a.tar.gz
Strip out a remaining programlisting
-rw-r--r--glib/gconvert.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/glib/gconvert.c b/glib/gconvert.c
index b92fdd85b..506f6b341 100644
--- a/glib/gconvert.c
+++ b/glib/gconvert.c
@@ -78,16 +78,16 @@
* set in which the application operates. Consider the Spanish file name
* "Presentaci&oacute;n.sxi". If the application which created it uses
* ISO-8859-1 for its encoding,
- * <programlisting>
+ * |[
* Character: P r e s e n t a c i &oacute; n . s x i
* Hex code: 50 72 65 73 65 6e 74 61 63 69 f3 6e 2e 73 78 69
- * </programlisting>
+ * ]|
* However, if the application use UTF-8, the actual file name on
* disk would look like this:
- * <programlisting id="filename-utf-8">
+ * |[
* Character: P r e s e n t a c i &oacute; n . s x i
* Hex code: 50 72 65 73 65 6e 74 61 63 69 c3 b3 6e 2e 73 78 69
- * </programlisting>
+ * ]|
* Glib uses UTF-8 for its strings, and GUI toolkits like GTK+ that use
* Glib do the same thing. If you get a file name from the file system,
* for example, from readdir() or from g_dir_read_name(), and you wish