Commit 4819712a authored by Mike Gabriel's avatar Mike Gabriel

Keystroke.c: Grammar fix in stdout message (Current known -> Currently known).

parent 57d3a42c
...@@ -434,7 +434,7 @@ void nxagentDumpKeystrokes(void) ...@@ -434,7 +434,7 @@ void nxagentDumpKeystrokes(void)
for (int i = 0; nxagentSpecialKeystrokeNames[i]; i++) for (int i = 0; nxagentSpecialKeystrokeNames[i]; i++)
maxlen = min(maxlen, strlen(nxagentSpecialKeystrokeNames[i])); maxlen = min(maxlen, strlen(nxagentSpecialKeystrokeNames[i]));
fprintf(stderr, "Current known keystrokes:\n"); fprintf(stderr, "Currently known keystrokes:\n");
for (struct nxagentSpecialKeystrokeMap *cur = map; cur->stroke != KEYSTROKE_END_MARKER; cur++) { for (struct nxagentSpecialKeystrokeMap *cur = map; cur->stroke != KEYSTROKE_END_MARKER; cur++) {
unsigned int mask = cur->modifierMask; unsigned int mask = cur->modifierMask;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment