summaryrefslogtreecommitdiff
path: root/src/screen.c
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2000-09-02 04:12:16 +0000
committerMichael Jennings <mej@kainx.org>2000-09-02 04:12:16 +0000
commitc567ebcf337b96efbcb37aab5728825e601151cc (patch)
treeaeb6d2e8af6c9a3af540284423e41bceccf382aa /src/screen.c
parente1573e95c8c404bc9048d36544b734bc689814ec (diff)
downloadeterm-c567ebcf337b96efbcb37aab5728825e601151cc.tar.gz
Fri Sep 1 21:03:53 PDT 2000 Michael Jennings <mej@eterm.org>
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
Diffstat (limited to 'src/screen.c')
-rw-r--r--src/screen.c4
1 files changed, 2 insertions, 2 deletions
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;