- If constant cursor position display is on when we finish, make
sure the cursor position is displayed properly. (DLR)
do_alt_speller()
- - Rename variable msglen to msg_len, for consistency, and make
- it a size_t instead of an int. Also remove unnecessary
- initialization of altspell_error. (DLR)
- If we can't invoke the spell checker, use sprintf() instead of
snprintf() to write the error string we return, as
- altspell_error will always be long enough to hold it. (DLR)
+ altspell_error will always be long enough to hold it. Also
+ remove unnecessary initialization of altspell_error, and
+ refactor so that msglen is no longer needed. (DLR)
allow_pending_sigwinch()
- Simplify by using the "?" operator instead of an if clause.
(DLR)
WEXITSTATUS(alt_spell_status) != 0) {
char *altspell_error;
char *invoke_error = _("Could not invoke \"%s\"");
- size_t msg_len = strlen(invoke_error) + strlen(alt_speller) + 2;
#ifndef NANO_SMALL
/* Turn the mark back on if it was on before. */
SET(MARK_ISSET);
#endif
- altspell_error = charalloc(msg_len);
+ altspell_error =
+ charalloc(strlen(invoke_error) +
+ strlen(alt_speller) + 2);
sprintf(altspell_error, invoke_error, alt_speller);
return altspell_error;
}