mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-25 22:29:42 +03:00
nano.c:main() - Fixed off by one when checking for MAIN_LIST_LEN. Ugh.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@871 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
abf22a8fb2
commit
48ebb81fb2
@ -35,6 +35,8 @@ CVS code -
|
|||||||
goofy logic setting x pos to value of last line when hitting the
|
goofy logic setting x pos to value of last line when hitting the
|
||||||
beginning of first line, prog should simply abort. Added
|
beginning of first line, prog should simply abort. Added
|
||||||
the #ifdefs around the code in main().
|
the #ifdefs around the code in main().
|
||||||
|
main()
|
||||||
|
- Fixed off by one when checking for MAIN_LIST_LEN. Ugh.
|
||||||
- rcfile.c:
|
- rcfile.c:
|
||||||
- Fix incorrect number of rc options (David Lawrence Ramsey).
|
- Fix incorrect number of rc options (David Lawrence Ramsey).
|
||||||
- po/sv.po:
|
- po/sv.po:
|
||||||
|
4
nano.c
4
nano.c
@ -3115,7 +3115,7 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
/* Look through the main shortcut list to see if we've hit a
|
/* Look through the main shortcut list to see if we've hit a
|
||||||
shortcut key */
|
shortcut key */
|
||||||
for (i = 0; i < MAIN_LIST_LEN && !keyhandled; i++) {
|
for (i = 0; i < MAIN_LIST_LEN - 1 && !keyhandled; i++) {
|
||||||
if (kbinput == main_list[i].val ||
|
if (kbinput == main_list[i].val ||
|
||||||
(main_list[i].misc1 && kbinput == main_list[i].misc1) ||
|
(main_list[i].misc1 && kbinput == main_list[i].misc1) ||
|
||||||
(main_list[i].misc2 && kbinput == main_list[i].misc2)) {
|
(main_list[i].misc2 && kbinput == main_list[i].misc2)) {
|
||||||
@ -3167,8 +3167,8 @@ int main(int argc, char *argv[])
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef NANO_SMALL
|
|
||||||
case 0: /* Erg */
|
case 0: /* Erg */
|
||||||
|
#ifndef NANO_SMALL
|
||||||
do_next_word();
|
do_next_word();
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user