From 6f749c0c44e7b9e09737b9f29edf29925a34f0cf Mon Sep 17 00:00:00 2001 From: Chris Liddell Date: Wed, 5 Oct 2016 09:59:25 +0100 Subject: [PATCH] Bug 697179: Reference count device icc profile when copying a device --- base/gsdevice.c | 1 + 1 file changed, 1 insertion(+) diff --git a/base/gsdevice.c b/base/gsdevice.c index 778106f..aea986a 100644 --- a/base/gsdevice.c +++ b/base/gsdevice.c @@ -614,6 +614,7 @@ gx_device_init(gx_device * dev, const gx_device * proto, gs_memory_t * mem, dev->memory = mem; dev->retained = !internal; rc_init(dev, mem, (internal ? 0 : 1)); + rc_increment(dev->icc_struct); } void -- 2.9.1 select name='h' onchange='this.form.submit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/keymap.scm
AgeCommit message (Expand)Author
2020-04-09installer: Allow Alt+Shift toggle from non-Latin keyboard layouts....Fixes <https://bugs.gnu.org/40493>. * gnu/installer/newt/keymap.scm (%non-latin-layouts): New variable. (%non-latin-variants): New variable. (%latin-layout+variants): New variable. (toggleable-latin-layout): New procedure to compute combined layouts. (run-keymap-page): Use it. (keyboard-layout->configuration): Apply it in config.scm. (run-layout-page): Mention Alt+Shift. * gnu/installer/keymap.scm (kmscon-update-keymap): Pass on XKB options. * gnu/installer/record.scm (<installer>): Adjust code comments. * gnu/installer.scm (apply-keymap): Pass on XKB options. (installer-steps): Adjust code comments. * gnu/packages/patches/kmscon-runtime-keymap-switch.patch: Apply XKB options. Florian Pelz