Change do_bracket ctrl shortcut to -9 (junk value) instead of 0 so control-space will work

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@811 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
Chris Allegretta 2001-10-02 03:14:43 +00:00
parent 92f5fdc230
commit 59121a9aaf
1 changed files with 1 additions and 1 deletions

View File

@ -421,7 +421,7 @@ void shortcut_init(int unjustify)
NANO_ALT_G, NANO_GOTO_FKEY, 0, VIEW, do_gotoline_void); NANO_ALT_G, NANO_GOTO_FKEY, 0, VIEW, do_gotoline_void);
#if (!defined NANO_SMALL) && (defined HAVE_REGEX_H) #if (!defined NANO_SMALL) && (defined HAVE_REGEX_H)
sc_init_one(&main_list[26], 0, _("Find Other Bracket"), sc_init_one(&main_list[26], -9, _("Find Other Bracket"),
nano_bracket_msg, nano_bracket_msg,
NANO_BRACKET_KEY, 0, 0, VIEW, do_find_bracket); NANO_BRACKET_KEY, 0, 0, VIEW, do_find_bracket);
#endif #endif