tweaks: normalize the indentation after an earlier change

(Should have been done yesterday, right after commit 2f718e11.)
master
Benno Schulenberg 2021-03-24 12:27:22 +01:00
parent b6909d3737
commit 74fcc3be79
1 changed files with 10 additions and 10 deletions

View File

@ -422,19 +422,19 @@ bool open_buffer(const char *filename, bool new_one)
if (has_valid_path(realname)) {
#ifndef NANO_TINY
if (ISSET(LOCKING) && !ISSET(VIEW_MODE) && filename[0] != '\0') {
char *thelocksname = do_lockfile(realname, TRUE);
if (ISSET(LOCKING) && !ISSET(VIEW_MODE) && filename[0] != '\0') {
char *thelocksname = do_lockfile(realname, TRUE);
/* When not overriding an existing lock, discard the buffer. */
if (thelocksname == SKIPTHISFILE) {
/* When not overriding an existing lock, discard the buffer. */
if (thelocksname == SKIPTHISFILE) {
#ifdef ENABLE_MULTIBUFFER
close_buffer();
close_buffer();
#endif
free(realname);
return FALSE;
} else
openfile->lock_filename = thelocksname;
}
free(realname);
return FALSE;
} else
openfile->lock_filename = thelocksname;
}
#endif /* NANO_TINY */
}
}