commit 321590a59d283b137b1e77bf57afe58deff7bccc
parent e51c95fa7b733233bbb4490089f2c8a999136ea4
Author: Chris Allegretta <chrisa@asty.org>
Date: Sun, 10 Dec 2000 06:03:40 +0000
More totsize fixes
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@402 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -15,7 +15,8 @@ CVS code -
- Dont stupidly assign the value of prev->lineno if prev == NULL!
- utils.c:
new_magicline()
- - Increment totsize!!
+ - Increment totsize!! We decrement it when we've read a file,
+ everywhere else it should automatically be incremented
nano 0.9.23 - 12/08/2000
General
diff --git a/files.c b/files.c
@@ -194,6 +194,7 @@ int read_file(int fd, char *filename)
} else if (fileptr->next == NULL) {
filebot = fileptr;
new_magicline();
+ totsize--;
/* Update the edit buffer */
load_file();