[wiki] [sites] wiki updated

From: <hg_AT_suckless.org>
Date: Sat, 11 Dec 2010 03:25:46 +0000 (UTC)

changeset: 659:e6f26b6184e9
tag: tip
user: Connor Lane Smith <cls_AT_lubutu.com>
date: Sat Dec 11 03:25:44 2010 +0000
files: tools.suckless.org/dmenu/patches/allow-kp_decimal-in-dmenu.patch tools.suckless.org/dmenu/patches/kp_decimal.md tools.suckless.org/dmenu/patches/legacy/allow-kp_decimal-in-dmenu.patch tools.suckless.org/dmenu/patches/legacy/kp_decimal.md
description:
move back patch


diff -r 61b9d6aca10f -r e6f26b6184e9 tools.suckless.org/dmenu/patches/allow-kp_decimal-in-dmenu.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools.suckless.org/dmenu/patches/allow-kp_decimal-in-dmenu.patch Sat Dec 11 03:25:44 2010 +0000
_AT_@ -0,0 +1,12 @@
+diff -r 4684b2cf4eab dmenu.c
+--- a/dmenu.c Sat Dec 05 16:52:53 2009 +0000
++++ b/dmenu.c Sun Dec 13 20:50:57 2009 +0000
+_AT_@ -395,6 +395,8 @@
+ ksym = XK_Return;
+ else if(ksym >= XK_KP_0 && ksym <= XK_KP_9)
+ ksym = (ksym - XK_KP_0) + XK_0;
++ else if(ksym == XK_KP_Decimal)
++ ksym = XK_period;
+ }
+ if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
+ || IsMiscFunctionKey(ksym) || IsPFKey(ksym)
diff -r 61b9d6aca10f -r e6f26b6184e9 tools.suckless.org/dmenu/patches/kp_decimal.md
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools.suckless.org/dmenu/patches/kp_decimal.md Sat Dec 11 03:25:44 2010 +0000
_AT_@ -0,0 +1,14 @@
+KEYPAD DECIMAL KEY
+==================
+
+This patch allows the decimal key on keypads to input a decimal in dmenu.
+
+Download
+--------
+
+* [allow-kp_decimal-in-dmenu.patch](allow-kp_decimal-in-dmenu.patch)
+
+Author
+------
+
+* Thomas Adam (thomas_adam) <[thomas.adam22_AT_gmail.com](mailto:thomas.adam22_AT_gmail.com)>
diff -r 61b9d6aca10f -r e6f26b6184e9 tools.suckless.org/dmenu/patches/legacy/allow-kp_decimal-in-dmenu.patch
--- a/tools.suckless.org/dmenu/patches/legacy/allow-kp_decimal-in-dmenu.patch Sat Dec 11 03:20:12 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
_AT_@ -1,12 +0,0 @@
-diff -r 4684b2cf4eab dmenu.c
---- a/dmenu.c Sat Dec 05 16:52:53 2009 +0000
-+++ b/dmenu.c Sun Dec 13 20:50:57 2009 +0000
-_AT_@ -395,6 +395,8 @@
- ksym = XK_Return;
- else if(ksym >= XK_KP_0 && ksym <= XK_KP_9)
- ksym = (ksym - XK_KP_0) + XK_0;
-+ else if(ksym == XK_KP_Decimal)
-+ ksym = XK_period;
- }
- if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
- || IsMiscFunctionKey(ksym) || IsPFKey(ksym)
diff -r 61b9d6aca10f -r e6f26b6184e9 tools.suckless.org/dmenu/patches/legacy/kp_decimal.md
--- a/tools.suckless.org/dmenu/patches/legacy/kp_decimal.md Sat Dec 11 03:20:12 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
_AT_@ -1,14 +0,0 @@
-KEYPAD DECIMAL KEY
-==================
-
-This patch allows the decimal key on keypads to input a decimal in dmenu.
-
-Download
---------
-
-* [allow-kp_decimal-in-dmenu.patch](allow-kp_decimal-in-dmenu.patch)
-
-Author
-------
-
-* Thomas Adam (thomas_adam) <[thomas.adam22_AT_gmail.com](mailto:thomas.adam22_AT_gmail.com)>
Received on Sat Dec 11 2010 - 04:25:46 CET

This archive was generated by hypermail 2.3.0 : Thu Sep 13 2012 - 19:31:33 CEST