convert globals from G_foo to Foo, as per TODO.

"looks good" pedro@, ok matthieu@
This commit is contained in:
jasper
2007-05-28 18:34:27 +00:00
parent 4a498a4c60
commit 9006bbf20b
17 changed files with 370 additions and 372 deletions

View File

@@ -20,9 +20,9 @@ input_keycodetrans(KeyCode kc, u_int state,
*chr = '\0';
if (state & ShiftMask)
ks = XKeycodeToKeysym(G_dpy, kc, 1);
ks = XKeycodeToKeysym(X_Dpy, kc, 1);
else
ks = XKeycodeToKeysym(G_dpy, kc, 0);
ks = XKeycodeToKeysym(X_Dpy, kc, 0);
/* Look for control characters. */
switch (ks) {