This patch replaces the environment variable "GTK_IM_MODULE" with "GUIX_GTK3_IM_MODULE_FILE" to prevent this version of GTK+ from loading input method modules for other major versions of GTK+. --- gtk+-3.20.3/gtk/deprecated/gtkrc.c 2016-08-21 22:40:48.168437905 +0200 +++ gtk+-3.20.3/gtk/deprecated/gtkrc.c 2016-08-23 10:12:09.097070097 +0200 @@ -768,7 +768,7 @@ gchar * gtk_rc_get_im_module_file (void) { - const gchar *var = g_getenv ("GTK_IM_MODULE_FILE"); + const gchar *var = g_getenv ("GUIX_GTK3_IM_MODULE_FILE"); gchar *result = NULL; if (var) pe='hidden' name='id' value='dc1f0ca43386c9c3147fac18b9f95e49c5aaed02'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/status.scm
AgeCommit message (Expand)Author
2022-06-26status: Relay "updating substitutes" messages....Until now, those messages would be accumulated and displayed all at once, when a '\n' was finally emitted by 'guix substitute'. In the meantime, clients would remain silent. * guix/status.scm (bytevector-index): Change 'number' parameter to 'numbers' and adjust accordingly. (build-event-output-port): Pass both #\newline and #\return to 'bytevector-index'. * tests/status.scm ("build-output-port, daemon messages with LF"): New test. Ludovic Courtès
2022-06-26status: Change tests from SRFI-11 to SRFI-71....* tests/status.scm: Use SRFI-71 'let' instead of SRFI-11 'let-values'. Ludovic Courtès