+Wed Apr 26 21:13:46 2006 Ben Pfaff <blp@gnu.org>
+
+ CLEAR TRANSFORMATIONS is unsafe as implemented. It's a fair
+ amount of work to implement it correctly, so make it
+ unimplemented.
+
+ * command.c: (cmd_clear_transformations) Removed.
+
+ * command.def: Mark CLEAR TRANSFORMATIONS as unimplemented.
+
Wed Apr 26 13:06:42 2006 Ben Pfaff <blp@gnu.org>
Work on readline completion.
return lex_end_of_command ();
}
-/* Parses, performs the CLEAR TRANSFORMATIONS command. */
-int
-cmd_clear_transformations (void)
-{
- cancel_transformations ();
- /* FIXME: what about variables created by transformations?
- They need to be properly initialized. */
-
- return CMD_SUCCESS;
-}
-
/* Parses a comment. */
int
cmd_comment (void)
DEF_CMD (S_DATA, 0, "AGGREGATE", cmd_aggregate)
DEF_CMD (S_DATA, 0, "AUTORECODE", cmd_autorecode)
DEF_CMD (S_DATA, F_KEEP_FINAL_TOKEN, "BEGIN DATA", cmd_begin_data)
-DEF_CMD (S_DATA, 0, "CLEAR TRANSFORMATIONS", cmd_clear_transformations)
DEF_CMD (S_DATA, 0, "CORRELATIONS", cmd_correlations)
DEF_CMD (S_DATA, 0, "COUNT", cmd_count)
DEF_CMD (S_DATA, 0, "CROSSTABS", cmd_crosstabs)
UNIMPL_CMD ("CASEPLOT", "Plot time series")
UNIMPL_CMD ("CASESTOVARS", "Restructure complex data")
UNIMPL_CMD ("CCF", "Time series cross correlation")
+UNIMPL_CMD ("CLEAR TRANSFORMATIONS", "Clears transformations from active file")
UNIMPL_CMD ("CLUSTER", "Hierachial clustering")
UNIMPL_CMD ("CONJOINT", "Analyse full concept data")
UNIMPL_CMD ("COXREG", "Cox proportional hazards regression")