X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fterminal%2FChangeLog;h=c626af0aae1cbebfed7a56913aec517fdbb79e3a;hb=bce579d144b66ca2eee18f6d27d847285a96d7b9;hp=5dda93b72313fc8538876dd10e2ebaab7d3ff675;hpb=b1d443d69154707ed834fccff17a54585c84507d;p=pspp-builds.git diff --git a/src/ui/terminal/ChangeLog b/src/ui/terminal/ChangeLog index 5dda93b7..c626af0a 100644 --- a/src/ui/terminal/ChangeLog +++ b/src/ui/terminal/ChangeLog @@ -1,3 +1,117 @@ +2007-09-25 Ben Pfaff + + Patch #6210: implement ability to resize output device parameters + to fit terminal window size as it changes. Reviewed by John + Darrington. + + * automake.mk (src_ui_terminal_libui_a_SOURCES): Add new files. + + * terminal.c: New file. + + * terminal.h: New file. + + * main.c (main): No need to set up SIGWINCH handler any longer. + But we do need to call terminal_init. + (set_fallback_viewport): Move to terminal.c. + [HAVE_LIBNCURSES] (get_termcap_viewport): Ditto. + [!HAVE_LIBNCURSES] (get_termcap_viewport): Ditto. + + * read-line.c (readln_read): After the first line of a command, + call terminal_check_size to allow it to re-detect the terminal + size. + +2007-09-24 Ben Pfaff + + Patch #6210. Reviewed by John Darrington. + * main.c (set_fallback_viewport): Make code easier to understand. + (get_termcap_viewport): Ditto. + + * command-line.c (parse_command_line): Don't call force_long_view, + as that function is no longer necessary. + + * msg-ui.c (handle_msg): Only wrap message output to the message + file to the width of the terminal if the message file is a tty. + +2007-09-19 John Darrington + + * main.c: Moved get_termcap_viewport from src/data/settings.c + Added a handler for SIGWINCH to call this function. Adjusted + init_settings to suit new interface. + +2007-09-22 Ben Pfaff + + Bug #21128. Reviewed by John Darrington. + + * main.c (i18_init): Set up LC_PAPER locale, if available. Don't + bother with LC_MONETARY locale, since we don't use it anywhere. + +2007-08-26 Ben Pfaff + + Bug #17238. Thanks to John Darrington for review. + + * main.c (main): When testing mode is enabled, use a built-in + output driver configuration instead of reading it from the + configuration file. + + * msg-ui.c (handle_msg): Send error message to non-screen output + devices also, if routing to listing files is enabled. + +2007-08-23 Ben Pfaff + + Implement journaling. Bug #17240. + + * msg-ui.c (handle_msg): Send message to write_journal function + as well as msg_file. + (dump_message): Change interface so that it takes a function + pointer instead of a FILE. + (write_stream): New function. + (write_journal): New function. + + * read-line.c (welcome): Call journal_enable, so that the journal + is enabled by default. + +2007-07-25 Ben Pfaff + + Make interactive output go to the terminal (bug #17213), by + causing the UI to flush output to the user when it prompts for a + command. + + * command-line.c (parse_command_line): Configure interactive + output devices if appropriate. + + * read-line.c (readln_read): Flush output if this is a prompt for + the first line of a command. + +2007-06-06 Ben Pfaff + + Adapt case sources, sinks, and clients of procedure code to the + new infrastructure. + + * main.c: No need for fastfile_factory any more. + +2007-02-25 Ben Pfaff + + Thanks to Jason Stover for verifying that this patch helps under + NetBSD. + + * main.c [HAVE_IEEE_FP]: Include . + (fpu_init) [HAVE_IEEE_FP]: Use setfpmask to mask floating-point + exceptions. + +Sun Feb 18 13:28:26 2007 Ben Pfaff + + * msg-ui.c: Don't include exit.h, because gnulib fixes up stdlib.h + as necessary. Do include stdlib.h, because exit.h did so for us + and we need it. + +Thu Feb 8 15:07:04 2007 Ben Pfaff + + * read-line.c (readln_initialize): Instead of only supporting + history in unix, always support history, and only support a + history file when $HOME is defined. + (readln_uninitialize): Ditto. + (welcome) Call readln_initialize instead of duplicating code. + Sun Dec 10 11:13:53 2006 Ben Pfaff * command-line.c (pre_syntax_message): Use term "syntax" instead