Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
dc5e2c6a
...
dc5e2c6a78faf0abbaad67ffb5a5b76ead594070
authored
2002-05-14 03:05:39 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Silenced warnings that can appear depending on the presence of
readline, and various terminal APIs.
1 parent
d37c61a6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
mail/mailline.c
mail/mailline.c
View file @
dc5e2c6
...
...
@@ -17,8 +17,10 @@
#include "mail.h"
#ifdef WITH_READLINE
static
char
**
ml_command_completion
__P
((
char
*
cmd
,
int
start
,
int
end
));
static
char
*
ml_command_generator
__P
((
const
char
*
text
,
int
state
));
#endif
static
volatile
int
_interrupted
;
...
...
@@ -254,8 +256,10 @@ ml_command_generator (const char *text, int state)
#include <sys/ioctl.h>
#define STDOUT 1
#ifndef TIOCSTI
static
int
ch_erase
;
static
int
ch_kill
;
#endif
#if defined(TIOCSTI)
#elif defined(HAVE_TERMIOS_H)
...
...
Please
register
or
sign in
to post a comment