Commit af8e5e03 authored by Ulrich Sibiller's avatar Ulrich Sibiller

Keystroke: whitespace fixes

parent 8f7b0b75
...@@ -193,7 +193,7 @@ static Bool read_binding_from_xmlnode(xmlNode *node, struct nxagentSpecialKeystr ...@@ -193,7 +193,7 @@ static Bool read_binding_from_xmlnode(xmlNode *node, struct nxagentSpecialKeystr
newkm.stroke = KEYSTROKE_END_MARKER; newkm.stroke = KEYSTROKE_END_MARKER;
for (int i = 0; nxagentSpecialKeystrokeNames[i] != NULL; i++) for (int i = 0; nxagentSpecialKeystrokeNames[i] != NULL; i++)
{ {
if (strcmp(nxagentSpecialKeystrokeNames[i],(char *)attr->children->content) == 0) if (strcmp(nxagentSpecialKeystrokeNames[i], (char *)attr->children->content) == 0)
{ {
/* this relies on the values of enum nxagentSpecialKeystroke and the /* this relies on the values of enum nxagentSpecialKeystroke and the
* indices of nxagentSpecialKeystrokeNames being in sync */ * indices of nxagentSpecialKeystrokeNames being in sync */
......
...@@ -69,7 +69,7 @@ enum nxagentSpecialKeystroke { ...@@ -69,7 +69,7 @@ enum nxagentSpecialKeystroke {
/* insert more here, increment KEYSTROKE_MAX accordingly. /* insert more here, increment KEYSTROKE_MAX accordingly.
* then update string translation below */ * then update string translation below */
KEYSTROKE_MAX=22, KEYSTROKE_MAX = 22,
}; };
struct nxagentSpecialKeystrokeMap { struct nxagentSpecialKeystrokeMap {
......
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