diff options
author | David Walter Seikel | 2014-04-15 18:39:39 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-04-15 18:39:39 +1000 |
commit | ba50a24053d6035d85acb0052827045116be8cbe (patch) | |
tree | ba27e9b6fbed86a84930fe804e1b48885ecc9473 | |
parent | Links about the different versions of showkey. (diff) | |
download | boxes-ba50a24053d6035d85acb0052827045116be8cbe.zip boxes-ba50a24053d6035d85acb0052827045116be8cbe.tar.gz boxes-ba50a24053d6035d85acb0052827045116be8cbe.tar.bz2 boxes-ba50a24053d6035d85acb0052827045116be8cbe.tar.xz |
Mark the key / command mapping structure constant.
-rw-r--r-- | dumbsh.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ static void startOfLine() | |||
133 | } | 133 | } |
134 | 134 | ||
135 | // The key to command mappings, Emacs style. | 135 | // The key to command mappings, Emacs style. |
136 | static struct keyCommand simpleEmacsKeys[] = | 136 | static const struct keyCommand simpleEmacsKeys[] = |
137 | { | 137 | { |
138 | {"BS", backSpaceChar}, | 138 | {"BS", backSpaceChar}, |
139 | {"Del", deleteChar}, | 139 | {"Del", deleteChar}, |