diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-09-13 23:40:10 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-09-13 23:40:10 +0000 |
commit | cc60ad8bb9596cafe94f48de9ea030ce01e22404 (patch) | |
tree | ba7b74a5ab8d70d7505c514c6d63929a9bcaded3 /libcons/Makefile | |
parent | fad9d77677aca4ce2fd11705f87adca9b0524ecf (diff) |
2002-09-14 Marcus Brinkmann <marcus@gnu.org>
* Makefile (SRCS): Add vcons-input.c.
* vcons-input.c: New file.
* vcons-scrollback.c (_cons_vcons_scrollback): New function.
(cons_vcons_scrollback): Reimplement in terms of
_cons_vcons_scrollback.
* cons.h (cons_scroll_t): New type.
(cons_vcons_scrollback): Update prototype.
* priv.h (_cons_jump_down_at_input): New extern.
(_cons_jump_down_at_output): Likewise.
(_cons_vcons_scrollback): New prototype.
* opts-std-startup.c (OPT_JUMP_DOWN_AT_INPUT): New macro.
(OPT_JUMP_DOWN_AT_OUTPUT): Likewise.
(_cons_jump_down_at_input): New variable.
(_cons_jump_down_at_output): Likewise.
(startup_options): Add new options --jump-down-at-input and
--jump-down-at-output.
(parse_startup_opt): Handle these new options.
* file-changed.c (cons_S_file_changed): Support the jump down at
output option.
Diffstat (limited to 'libcons/Makefile')
-rw-r--r-- | libcons/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcons/Makefile b/libcons/Makefile index 2a677e7d..576f8b66 100644 --- a/libcons/Makefile +++ b/libcons/Makefile @@ -22,7 +22,8 @@ libname = libcons SRCS= demuxer.c init-init.c init-loop.c opts-version.c extra-version.c \ dir-changed.c file-changed.c opts-std-startup.c cons-lookup.c \ cons-switch.c vcons-remove.c vcons-add.c vcons-open.c \ - vcons-close.c vcons-destroy.c vcons-refresh.c vcons-scrollback.c + vcons-close.c vcons-destroy.c vcons-refresh.c vcons-scrollback.c \ + vcons-input.c LCLHDRS = priv.h mutations.h installhdrs = cons.h |