diff --git a/ChangeLog b/ChangeLog index 0a04ac97168317c920ffc50b2a54cd04d8256b15..629fc861c39d200185a363075000bf3344335048 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * src/text.c (execute_command) - Equalize pipe error messages. * src/global.c (thanks_for_all_the_fish) - Remove a redundant '#ifdef DEBUG', it is contained within a wider one. + * src/global.c (strtosc) - Correct a misspelled keyword. 2014-02-28 Eitan Adler <lists@eitanadler.com> * src/nano.c (do_toggle) - Constify a char pointer, to fix diff --git a/src/global.c b/src/global.c index ad4c52ae90b78820fb72b68aa937de7945ec754e..461652bf331306b8f6e03ac457d551e4fd1c2f89 100644 --- a/src/global.c +++ b/src/global.c @@ -1550,7 +1550,7 @@ sc *strtosc(int menu, char *input) s->scfunc = do_toggle_void; s->execute = FALSE; s->toggle = BACKUP_FILE; - } else if (!strcasecmp(input, "mutlibuffer")) { + } else if (!strcasecmp(input, "multibuffer")) { s->scfunc = do_toggle_void; s->execute = FALSE; s->toggle = MULTIBUFFER;