diff options
author | MIHIRA Sanpei Yoshiro <sanpei@FreeBSD.org> | 2000-07-05 14:20:41 +0000 |
---|---|---|
committer | MIHIRA Sanpei Yoshiro <sanpei@FreeBSD.org> | 2000-07-05 14:20:41 +0000 |
commit | 0e7b4e6020f49664b869cbbeb64799906693ce51 (patch) | |
tree | ce1e14880644a2cd16b49daca4a6c7aa9618da52 /x11/xkbctrl | |
parent | I wrote a wrong port description when importing. (diff) |
fix typo in original source
Mod2Mask --> Mod4Mask
Submitted by: Sebastien Carlier <sebc@epita.fr>
Notes
Notes:
svn path=/head/; revision=30233
Diffstat (limited to 'x11/xkbctrl')
-rw-r--r-- | x11/xkbctrl/files/patch-ab | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/x11/xkbctrl/files/patch-ab b/x11/xkbctrl/files/patch-ab index 765ca74c3b16..fbc6774de8c8 100644 --- a/x11/xkbctrl/files/patch-ab +++ b/x11/xkbctrl/files/patch-ab @@ -1,5 +1,5 @@ --- xkbctrl.c.org Sun Jan 9 22:51:02 2000 -+++ xkbctrl.c Sun Jan 9 22:51:21 2000 ++++ xkbctrl.c Wed Jul 5 22:15:09 2000 @@ -27,7 +27,7 @@ #include <stdio.h> @@ -9,3 +9,12 @@ #include <ctype.h> #include <X11/Xos.h> #include <X11/Xlib.h> +@@ -112,7 +112,7 @@ + if (*tmp=='4') { + *changes|= Mod4Mask; + if (onOff) *mods|= Mod4Mask; +- else *mods&= ~Mod2Mask; ++ else *mods&= ~Mod4Mask; + } + if (*tmp=='5') { + *changes|= Mod5Mask; |