summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormongo <mongo@iomega>2016-09-28 14:08:03 -0300
committermongo <mongo@iomega>2016-09-28 14:08:03 -0300
commit9a5d53279b27e7e37b1eb80f5f7159df1bbe9d8e (patch)
treec6370855bbc78a0412552fc90699aa5da21d2e63
parent53b1cb5db38c77b0be0238b91fe4b2018c6275cb (diff)
Updated CHANGES file
-rw-r--r--CHANGES12
-rw-r--r--src/cmds.c2
-rw-r--r--src/screen.c2
3 files changed, 13 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 1da2459..7139f42 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,7 +2,7 @@ v0.4.0
* Fix memory leak in functions that use seval. ex.: dosval docat. this used to happen also in SC !
* Chain cells with equations into a new graph structure
* Change how cell expressions are evaluated
-* new function to rebuilt graph
+* New function to rebuilt graph
* Added free() call in GOTO in gram.y
* Added free() call in SORT in gram.y
* Added rebuild_graph, print_graph, undo and redo to gram.y
@@ -19,6 +19,16 @@ v0.4.0
* Changes in readfile function to fix issue that sometimes appeared
when working with scripting, that made null output of interpreter
* Changes in sc_info sc_error and sc_debug functions..
+* Changed sc_error sc_info and sc_debug functions to MACROS.
+* Added new "debug" configuration parameter
+* White background support
+* Fix when undoing :sums that made no sums..
+* :w command now adds '.sc' extension if none is specified
+* Fix some #include's
+* Fix :load command
+* Expand filenames using wordexp
+* Restored old SC fill function
+
v0.3.0
diff --git a/src/cmds.c b/src/cmds.c
index 7898ba2..1b599f1 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -1229,7 +1229,7 @@ struct ent * back_row(int arg) {
int r = currow;
while (arg--) {
if (r) r--;
- else {
+ else {
sc_info("At row zero");
break;
}
diff --git a/src/screen.c b/src/screen.c
index 32b608c..92655cd 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -127,7 +127,7 @@ void do_welcome() {
void update(int header) {
#ifdef USECOLORS
wbkgd(main_win, COLOR_PAIR(ucolors[DEFAULT].fg * 8 + ucolors[DEFAULT].bg + 1));
- wbkgd(input_win, COLOR_PAIR(ucolors[DEFAULT].fg * 8 + ucolors[DEFAULT].bg + 1));
+ //wbkgd(input_win, COLOR_PAIR(ucolors[DEFAULT].fg * 8 + ucolors[DEFAULT].bg + 1));
#endif
if (loading) return;
if (cmd_multiplier > 1) return;