1
1

Readjusting the indentation and a comment.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5573 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
Benno Schulenberg 2016-01-20 15:33:41 +00:00
родитель 8bd76d8302
Коммит a91a1c7bbd
2 изменённых файлов: 15 добавлений и 13 удалений

Просмотреть файл

@ -1,3 +1,6 @@
2016-01-20 Benno Schulenberg <bensberg@justemail.net>
* src/files.c (open_buffer): Readjust the indentation and a comment.
2016-01-20 Rishabh Dave <rishabhddave@gmail.com> 2016-01-20 Rishabh Dave <rishabhddave@gmail.com>
* src/files.c (verify_path, open_buffer): When opening a new buffer, * src/files.c (verify_path, open_buffer): When opening a new buffer,
verify that the containing directory of the given filename exists. verify that the containing directory of the given filename exists.

Просмотреть файл

@ -400,14 +400,14 @@ bool open_buffer(const char *filename, bool undoable)
} }
/* If we're going to load into a new buffer, first create the new /* If we're going to load into a new buffer, first create the new
* buffer and lock the corresponding file. */ * buffer and (if possible) lock the corresponding file. */
if (new_buffer) { if (new_buffer) {
make_new_buffer(); make_new_buffer();
verify_path(filename); verify_path(filename);
if (valid_path) {
#ifndef NANO_TINY #ifndef NANO_TINY
if (valid_path) {
if (ISSET(LOCKING) && filename[0] != '\0') { if (ISSET(LOCKING) && filename[0] != '\0') {
int lockstatus = do_lockfile(filename); int lockstatus = do_lockfile(filename);
if (lockstatus < 0) { if (lockstatus < 0) {
@ -417,12 +417,11 @@ bool open_buffer(const char *filename, bool undoable)
return FALSE; return FALSE;
} }
#endif #endif
} else if (lockstatus == 0) { } else if (lockstatus == 0)
quiet = TRUE; quiet = TRUE;
} }
} }
#endif #endif /* !NANO_TINY */
}
} }
/* If the filename isn't blank, and we are not in NOREAD_MODE, /* If the filename isn't blank, and we are not in NOREAD_MODE,