aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/show-us-flag.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-10-10 10:34:56 -0400
committerB. Stack <bgstack15@gmail.com>2022-10-10 10:34:56 -0400
commit4767a3eb78e2e8286160000c203d1b91357614f7 (patch)
treeb3ecf8f3ba45c40f95efc8bc024e36cd5a61a8ed /debian/patches/show-us-flag.patch
parentreadd all images (diff)
downloadfbxkb-4767a3eb78e2e8286160000c203d1b91357614f7.tar.gz
fbxkb-4767a3eb78e2e8286160000c203d1b91357614f7.tar.bz2
fbxkb-4767a3eb78e2e8286160000c203d1b91357614f7.zip
original 0.6 source codeorig
from debian's orig.tar.gz. The original app is from sourceforge: https://fbxkb.sourceforge.net/index.html
Diffstat (limited to 'debian/patches/show-us-flag.patch')
-rw-r--r--debian/patches/show-us-flag.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/debian/patches/show-us-flag.patch b/debian/patches/show-us-flag.patch
deleted file mode 100644
index 5c86190..0000000
--- a/debian/patches/show-us-flag.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Description: Fix parsing of keyboard info, to show proper "us" flag
-Author: Dmitry Borisyuk <q1werty@i.com.ua>
-Bug-Debian: https://bugs.debian.org/412254
---- a/fbxkb.c
-+++ b/fbxkb.c
-@@ -372,7 +372,7 @@
- *tmp = 0;
-
- DBG("map=%s no=%d\n", tok, no);
-- if (!strcmp(tok, "pc") || !strcmp(tok, "group"))
-+ if (!strcmp(tok, "pc") || (strlen(tok) != 2))
- continue;
-
- g_assert((no >= 0) && (no < ngroups));
bgstack15