X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fterminal%2FChangeLog;h=10d7d36558ba7f729c7d4e01610108b3561804c5;hb=92c09e564002d356d20fc1e2e131027ef89f6748;hp=00cef0f79459527b4e61bb2077af79f803df4037;hpb=7ae8b9ba0e2634a5b72ac6470ebbdf92a78b7892;p=pspp diff --git a/src/ui/terminal/ChangeLog b/src/ui/terminal/ChangeLog index 00cef0f794..10d7d36558 100644 --- a/src/ui/terminal/ChangeLog +++ b/src/ui/terminal/ChangeLog @@ -1,3 +1,85 @@ +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 + of "script". + +Sat Dec 9 07:21:02 WST 2006 John Darrington + + * msg-ui.c (msg_ui_done): call msg_locator_done. + +Sun Dec 3 11:57:00 2006 Ben Pfaff + + * read-line.c (read_interactive): Always read GETL_INTERACTIVE + lines. + +Thu Nov 16 20:46:35 WST 2006 John Darrington + + * main.c: Connect debugger on errors. + +Tue Nov 7 20:54:32 WST 2006 John Darrington + + * command-line.c msg-ui.c msg-ui.h main.c: Added an -e + option to set the file for error messages. + +Sat Nov 4 15:48:04 2006 Ben Pfaff + + * msg-ui.c (handle_msg): Only write message to terminal if + get_error_routing_to_terminal() returns true. + +Fri Jul 7 20:03:42 2006 Ben Pfaff + + * main.c: (main) Register SIGABRT with bug_handler also. + (bug_handler) Handle SIGABRT also. + +Tue Jun 27 22:44:56 2006 Ben Pfaff + + Fix regression in command name completion reported by John + Darrington. Now completion is again state-dependent and occurs + only on the first line of a command. + + * main.c (main): Reading of first token in command moved into + cmd_parse. + (execute_command) Removed. + + * read-line.c: [HAVE_READLINE] (readln_initialize) Postpone + setting rl_attempted_completion_function until readln_read. + [HAVE_READLINE] (readln_read) Change param from const char * to + enum getl_prompt_style. Set rl_attempted_completion_function + based on style. + [HAVE_READLINE] (complete_command_name) New function. + [HAVE_READLINE] (dont_complete) New function. + [HAVE_READLINE] (command_generator) New function. + Tue Jun 27 08:23:07 2006 Ben Pfaff * automake.mk (src_ui_terminal_pspp_LDADD): Add $(LIBICONV).