Revision 121fd427cff6103ad4f79e46b0776ebcef5a5983
sadrul at pidgin.im
sadrul at pidgin.im
Sun Mar 18 14:00:27 EDT 2007
o -----------------------------------------------------------------
| Revision: 121fd427cff6103ad4f79e46b0776ebcef5a5983
| Ancestor: 00c2128591b183fa1d69d9bf13d1f0cbf7fea9ad
| Author: sadrul at pidgin.im
| Date: 2007-03-18T18:17:14
| Branch: im.pidgin.pidgin
|
| Modified files:
| console/libgnt/gntkeys.c
|
| ChangeLog:
|
| Allow non-alt non-ctrl bindings. I broke this with me last few changes.
|
| ============================================================
| --- console/libgnt/gntkeys.c 8277e0557d9bd91b8263569b9de6f73233687c89
| +++ console/libgnt/gntkeys.c 95eb0afb238ae740445bb50f7261e6d92de5e328
| @@ -88,7 +88,6 @@ void gnt_init_keys()
| }
|
| for (a = 0; alts[a]; a++) {
| - if (a == 0 && c == 0) continue;
| for (ch = 0; ch < 26; ch++) {
| char str[2] = {'a' + ch, 0}, code[4] = "\0\0\0\0";
| int ind = 0;
| @@ -100,7 +99,7 @@ void gnt_init_keys()
| }
| }
| c = 0;
| - for (a = 1; alts[a]; a++) {
| + for (a = 0; alts[a]; a++) {
| /* Upper-case alphabets */
| for (ch = 0; ch < 26; ch++) {
| char str[2] = {'A' + ch, 0}, code[] = {'\033', 'A' + ch, 0};
To get the patch for this revision, please do this:
mtn log --last 1 --diffs --from 121fd427cff6103ad4f79e46b0776ebcef5a5983
More information about the Commits
mailing list