Commit a60910cc authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Better fix, remove unneeded closecode variable and update bug credit.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4419 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 7be32046
Showing with 3 additions and 2 deletions
+3 -2
2009-11-09 Chris Allegretta <chrisa@asty.org>
* files.c (read_file): - Remove debugging messages from file load
* files.c (read_file): - Remove debugging messages from file load. Fixes
Savannah bug 27838.
2009-11-07 Chris Allegretta <chrisa@asty.org>
* nano.h - Add bogus value at begin of flags enumeration because it
......
......@@ -515,7 +515,7 @@ void read_file(FILE *f, int fd, const char *filename, bool undoable)
nperror(filename);
fclose(f);
if (fd > 0) {
int closecode = close(fd);
close(fd);
writable = is_file_writable(filename);
}
......
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