summaryrefslogtreecommitdiffstats
path: root/src/cmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmds.c')
-rw-r--r--src/cmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmds.c b/src/cmds.c
index 09f7ecb..dcf0301 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -935,7 +935,7 @@ void insert_or_edit_cell() {
inputline[0]='\0';
inputline_pos = 0;
chg_mode('.');
- clr_header(input_win, 0);
+ clr_header(input_win, 0); //FIXME
char * opt = get_conf_value("newline_action");
switch (opt[0]) {
@@ -958,7 +958,7 @@ void send_to_interp(char * oper) {
linelim = 0;
(void) yyparse();
- if (atoi(get_conf_value("autocalc"))) EvalAll();
+ if (atoi(get_conf_value("autocalc")) && ! loading) EvalAll();
//line[0]='\0';
return;
}