Link against $(LIBICONV).
[pspp-builds.git] / src / ui / terminal / ChangeLog
1 Tue Jun 27 08:23:07 2006  Ben Pfaff  <blp@gnu.org>
2
3         * automake.mk (src_ui_terminal_pspp_LDADD): Add $(LIBICONV).
4         Thanks to Jason Stover for reporting the omission.
5
6 Thu May  4 21:50:59 2006  Ben Pfaff  <blp@gnu.org>
7
8         Continue reforming procedure execution.  In this phase, move
9         procedure.c and procedure.h from src to src/data.  Update
10         makefiles and #includes accordingly.
11
12         * automake.mk: (src_ui_terminal_pspp_SOURCES) Remove
13         src/procedure.c and src/procedure.h.
14         (src_ui_terminal_pspp_LDADD) Move libexpressions.a later in list
15         to make the link work.
16
17 Wed May  3 23:09:37 2006  Ben Pfaff  <blp@gnu.org>
18
19         Continue reforming procedure execution.  In this phase, get rid of
20         many global variables, consolidating procedure execution in
21         procedure.c.  Encapsulate transformations in new "struct
22         trns_chain".  Also, change implementation of N OF CASES, FILTER,
23         and PROCESS IF from special cases to transformations.
24          
25         * main.c: (main) Use proc_init().
26         (terminate) Use proc_done().
27
28 Wed Apr 26 13:34:54 2006  Ben Pfaff  <blp@gnu.org>
29
30         Improve command name completion in readline.
31         
32         * read-line.c (readln_initialize): Set up readline to only break
33         words for completion at new-line.  That way we can complete a
34         whole command name.  Also, set rl_attempted_completion_function
35         instead of rl_completion_entry_function so we can disable
36         completing on file names, which is usually not what we want in
37         PSPP.
38
39 Wed Apr 26 13:31:00 2006  Ben Pfaff  <blp@gnu.org>
40
41         Improve the way we handle the various parsing "states".  Until now
42         we've hard-coded the state transitions in the command definition
43         file, but that's error-prone and, worse, it's redundant--we can
44         figure out what state we're in anyhow.  We can cleanly handle
45         INPUT PROGRAM and FILE TYPE with a nested command-processing loop.
46         
47         * automake.mk (src_ui_terminal_pspp_LDADD): Move libui earlier to
48         avoid link errors.
49
50         * main.c (main): Handle new CMD_* results.
51         (execute_command) Move most per-command actions into cmd_parse().
52         (handle_error) Removed.  cmd_parse() handles command failure.
53
54 Tue Apr 25 11:08:17 2006  Ben Pfaff  <blp@gnu.org>
55
56         Finish reforming error message support.  In this phase, move
57         message.c into libpspp.
58         
59         * automake.mk: Remove message.c from sources.
60
61 Tue Apr 25 10:58:19 2006  Ben Pfaff  <blp@gnu.org>
62
63         Continue reforming error message support.  In this phase, drop
64         actual message printing from core code, substituting a callback,
65         and add the callback to each UI.  Also, move verbose_msg() into
66         its own module.
67
68         * automake.mk (src_ui_terminal_libui_a_SOURCES): Add msg-ui.c,
69         msg-ui.h.
70
71         * command-line.c: (parse_command_line) Call
72         verbose_increment_level() instead of increment err_verbosity
73         directly, now that we have a little abstraction.
74
75         * msg-ui.c: New file.
76
77         * msg-ui.h: New file.
78
79         * main.c: (main) Call msg_ui_init().  Use any_errors().
80         (terminate) Call msg_ui_done().  Make termination order more
81         rational.
82
83         * read-line.c: (readln_read) Use reset_msg_count() now we have a
84         little abstraction.
85
86 Tue Apr 25 09:39:46 2006  Ben Pfaff  <blp@gnu.org>
87
88         * main.c: (terminate) Mark static and NO_RETURN.  If called
89         recursively, which can only happen via signal, just exit instead
90         of trying to gracefully shut down.      
91
92 Fri Mar 31 10:33:37 2006  Ben Pfaff  <blp@gnu.org>
93
94         * command-line.c: (var pre_syntax_message) -d and -u are no longer
95         supported.
96
97 Sat Mar 11 14:18:39 WST 2006 John Darrington <john@darrington.wattle.id.au>
98
99         * automake.mk: Moved the pspp binary here.
100
101 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
102         
103         * Moved files from src directory