summaryrefslogtreecommitdiffstats
path: root/key-bindings.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-04-30 18:39:34 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-04-30 18:39:34 +0000
commit4a74349ff5c789ea6cc05af5bf8ac25e60abf54a (patch)
tree4dc904955d15ccd5dce8385327c30f0df338f4d3 /key-bindings.c
parenta583bbb730201b863c783daa90a21f119ca9f168 (diff)
static const.
Diffstat (limited to 'key-bindings.c')
-rw-r--r--key-bindings.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/key-bindings.c b/key-bindings.c
index e0110359..29cc8215 100644
--- a/key-bindings.c
+++ b/key-bindings.c
@@ -1,4 +1,4 @@
-/* $Id: key-bindings.c,v 1.68 2009-04-30 06:01:24 nicm Exp $ */
+/* $Id: key-bindings.c,v 1.69 2009-04-30 18:39:34 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -74,7 +74,7 @@ key_bindings_remove(int key)
void
key_bindings_init(void)
{
- struct {
+ static const struct {
int key;
int can_repeat;
const struct cmd_entry *entry;