Language tags support
Status: Beta
Brought to you by:
sur5r
gq does not support language tags.
http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=/rzahy/rzahylangtags.htm
I hope to see them supported in a future release!
Logged In: NO
In GQ-1.2.2 the fix for that is rather simple:
comment out line 173 "*d=0" in function attr_strip in src/formfill.c. It seems not to broke anything.
--- src/formfill.c (revision 2)
+++ src/formfill.c (working copy)
@@ -170,7 +170,7 @@
char *d = g_utf8_strchr(c, -1, ';'); /* UTF-8: doesn't hurt */
if (d) {
- *d = 0;
+ // *d = 0;
}
return c;
}
Logged In: NO
In GQ-1.2.2 the fix for that is rather simple:
comment out line 173 "*d=0" in function attr_strip in src/formfill.c. It seems not to broke anything.
--- src/formfill.c (revision 2)
+++ src/formfill.c (working copy)
@@ -170,7 +170,7 @@
char *d = g_utf8_strchr(c, -1, ';'); /* UTF-8: doesn't hurt */
if (d) {
- *d = 0;
+ // *d = 0;
}
return c;
}
The patch looks a bit too simple to me. I have to look into this.