diff --git a/CHANGES b/CHANGES index 9aca03ed..021cbe39 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,6 @@ 09 November 2007 +* (nicm) C-space is now "^ " not "^@". * (nicm) Support tab (\011). * (nicm) Initial man page outline. * (nicm) -V to show version. @@ -197,4 +198,4 @@ (including mutt, emacs). No status bar yet and no key remapping or other customisation. -$Id: CHANGES,v 1.63 2007-11-09 17:06:01 nicm Exp $ +$Id: CHANGES,v 1.64 2007-11-09 17:09:34 nicm Exp $ diff --git a/key-string.c b/key-string.c index b3f5f8d4..73952512 100644 --- a/key-string.c +++ b/key-string.c @@ -1,4 +1,4 @@ -/* $Id: key-string.c,v 1.3 2007-10-19 11:10:35 nicm Exp $ */ +/* $Id: key-string.c,v 1.4 2007-11-09 17:09:34 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -174,7 +174,7 @@ struct { { "SUSPEND", KEYC_SUSPEND }, { "UNDO", KEYC_UNDO }, { "UP", KEYC_UP }, - { "^@", 0 }, + { "^ ", 0 }, { "^A", 1 }, { "^B", 2 }, { "^C", 3 },