From c567ebcf337b96efbcb37aab5728825e601151cc Mon Sep 17 00:00:00 2001 From: Michael Jennings Date: Sat, 2 Sep 2000 04:12:16 +0000 Subject: Fri Sep 1 21:03:53 PDT 2000 Michael Jennings I'm working on some deallocators now. The idea is that when Eterm exits and memory debugging is on, several routines get called to free the in-use memory (menus, font cache, etc.) that we still know about. Anything left after that would be either unavoidable leaks (like environment variables...read the putenv() man page sometime...sigh) or genuine memory leaks that need fixing. I'm down to about 4.5K of leftover malloc'd memory now. Making progress.... SVN revision: 3295 --- src/screen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/screen.c') diff --git a/src/screen.c b/src/screen.c index d352993..e96052b 100644 --- a/src/screen.c +++ b/src/screen.c @@ -102,7 +102,7 @@ encoding_t encoding_method = LATIN1; /* Fill part/all of a drawn line with blanks. */ inline void blank_line(text_t *, rend_t *, int, rend_t); inline void -blank_line(text_t * et, rend_t * er, int width, rend_t efs) +blank_line(text_t *et, rend_t *er, int width, rend_t efs) { /* int i = width; */ register unsigned int i = width; @@ -2713,7 +2713,7 @@ selection_click(int clicks, int x, int y) #endif void -selection_delimit_word(int col, int row, row_col_t * beg, row_col_t * end) +selection_delimit_word(int col, int row, row_col_t *beg, row_col_t *end) { int beg_col, beg_row, end_col, end_row, last_col; int row_offset, w1; -- cgit v1.2.1