diff options
Diffstat (limited to 'lib/readline/readline.h')
| -rw-r--r-- | lib/readline/readline.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/readline/readline.h b/lib/readline/readline.h index 3688c4b8..fade6d41 100644 --- a/lib/readline/readline.h +++ b/lib/readline/readline.h @@ -404,6 +404,7 @@ extern int rl_reset_terminal PARAMS((const char *)); extern void rl_resize_terminal PARAMS((void)); extern void rl_set_screen_size PARAMS((int, int)); extern void rl_get_screen_size PARAMS((int *, int *)); +extern void rl_reset_screen_size PARAMS((void)); extern char *rl_get_termcap PARAMS((const char *)); @@ -531,6 +532,11 @@ extern const char *rl_terminal_name; extern FILE *rl_instream; extern FILE *rl_outstream; +/* If non-zero, Readline gives values of LINES and COLUMNS from the environment + greater precedence than values fetched from the kernel when computing the + screen dimensions. */ +extern int rl_prefer_env_winsize; + /* If non-zero, then this is the address of a function to call just before readline_internal () prints the first prompt. */ extern rl_hook_func_t *rl_startup_hook; |
