Commit a43eee6a authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: fix compilation with --enable-tiny --enable-color --enable-speller

Also avoid an unused-variable warning, and trim a useless assert.
No related merge requests found
Showing with 5 additions and 4 deletions
+5 -4
......@@ -983,11 +983,9 @@ void do_enter(void)
{
filestruct *newnode = make_new_node(openfile->current);
size_t extra = 0;
#ifndef NANO_TINY
bool allblanks = FALSE;
assert(openfile->current != NULL && openfile->current->data != NULL);
#ifndef NANO_TINY
if (ISSET(AUTOINDENT)) {
extra = indent_length(openfile->current->data);
......@@ -3390,8 +3388,10 @@ void do_formatter(void)
return;
}
#ifndef NANO_TINY
/* We're not supporting partial formatting, oi vey. */
openfile->mark_set = FALSE;
#endif
status = write_file(temp, temp_file, TRUE, OVERWRITE, FALSE);
if (!status) {
......@@ -3457,10 +3457,11 @@ void do_formatter(void)
set_modified();
#ifndef NANO_TINY
/* Flush the undo stack, to avoid a mess or crash when
* the user tries to undo things in reformatted lines. */
discard_until(NULL, openfile);
#endif
finalstatus = _("Finished formatting");
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment