]> git.wh0rd.org Git - nano.git/commitdiff
cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 21 Jun 2005 01:41:46 +0000 (01:41 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 21 Jun 2005 01:41:46 +0000 (01:41 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2742 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/nano.c

index 594929c0f744c97a0421a09919c29380be72c129..0e30458791f1e782195ca8146e3c6c78c7a2b717 100644 (file)
@@ -2373,15 +2373,14 @@ const char *do_alt_speller(char *tempfile_name)
        char *invoke_error = _("Could not invoke \"%s\"");
        int msglen = strlen(invoke_error) + strlen(alt_speller) + 2;
 
-       altspell_error = charalloc(msglen);
-       snprintf(altspell_error, msglen, invoke_error, alt_speller);
-
 #ifndef NANO_SMALL
        /* Turn the mark back on if it was on before. */
        if (old_mark_set)
            SET(MARK_ISSET);
 #endif
 
+       altspell_error = charalloc(msglen);
+       snprintf(altspell_error, msglen, invoke_error, alt_speller);
        return altspell_error;
     }