vte r2341 - in trunk: . src



Author: behdad
Date: Fri Dec 12 09:04:00 2008
New Revision: 2341
URL: http://svn.gnome.org/viewvc/vte?rev=2341&view=rev

Log:
2008-12-12  Behdad Esfahbod  <behdad gnome org>

        * src/iso2022.c (_vte_iso2022_ambiguous_width): Avoid pointers in the
        const array.



Modified:
   trunk/ChangeLog
   trunk/src/iso2022.c

Modified: trunk/src/iso2022.c
==============================================================================
--- trunk/src/iso2022.c	(original)
+++ trunk/src/iso2022.c	Fri Dec 12 09:04:00 2008
@@ -320,7 +320,7 @@
 static int
 _vte_iso2022_ambiguous_width(struct _vte_iso2022_state *state)
 {
-	const char *wide_codelist[] = {
+	const char wide_codelist[][10] = {
 		"big5",
 		"big5hkscs",
 		"euccn",



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]