Thu Feb 17 11:11:46 PST 2000

(Mandrake)

removed some warnings, still a few left in dox/file.c


SVN revision: 2086
This commit is contained in:
Mandrake 2000-02-17 18:59:31 +00:00
parent 2c23624373
commit 6d72646f2c
4 changed files with 10 additions and 2 deletions

View File

@ -1693,3 +1693,10 @@ Thu Feb 17 11:02:30 PST 2000
(Mandrake)
patch from Bob Arendt <rdarendt@cwcom.net> to fix a problem in eesh with tru64
-------------------------------------------------------------------------------
Thu Feb 17 11:11:46 PST 2000
(Mandrake)
removed some warnings, still a few left in dox/file.c

View File

@ -668,7 +668,7 @@ RenderPage(Window win, int page_num, int w, int h)
int sx, sy, ssx, ssy;
char link_txt[1024];
char link_link[1024];
int spaceflag, oldwc;
int spaceflag, oldwc=0;
wd[0] = 0;
if ( MB_CUR_MAX > 1 ) /* If multibyte locale,... */

View File

@ -32,6 +32,7 @@
extern char waitonly;
static int stdin_state;
void restore_stdin_state(void);
void restore_stdin_state(void) {
fcntl(0, F_SETFL, stdin_state);
}

View File

@ -460,7 +460,7 @@ TextDraw(TextClass * tclass, Window win, int active, int sticky, int state,
char *new_line;
int nuke_count = 0;
int len;
wchar_t *wc_line;
wchar_t *wc_line = NULL;
int wc_len;
len = strlen(lines[i]);