summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrés <andmarti@gmail.com>2021-03-13 00:05:01 -0300
committerAndrés <andmarti@gmail.com>2021-03-13 00:05:01 -0300
commit8274b7f0580cf95a157fb7a2bf68a50100c30ac8 (patch)
treed69328aa068d1642fa1e052b0f81d2f934e54414
parentc298933574e1a78f2cdbc5d2c8aef02d30f613d5 (diff)
fixed wrong comment ending
-rw-r--r--src/interp.c3
-rw-r--r--src/tui.c6
2 files changed, 6 insertions, 3 deletions
diff --git a/src/interp.c b/src/interp.c
index 1b14edc..1dba447 100644
--- a/src/interp.c
+++ b/src/interp.c
@@ -1308,6 +1308,7 @@ double eval(register struct ent * ent, register struct enode * e) {
case CYAN: return ((double) COLOR_CYAN);
case WHITE: return ((double) COLOR_WHITE);
case DEFAULT_COLOR: return ((double) DEFAULT_COLOR);
+ */
case FACT:
{
double total = eval(ent, e->e.o.left);
@@ -1324,7 +1325,7 @@ double eval(register struct ent * ent, register struct enode * e) {
return ((double) 0.0);
}
-/**
+/*
* \brief TODO Document eval_fpe()
*
* \return none
diff --git a/src/tui.c b/src/tui.c
index c1e6148..99ed995 100644
--- a/src/tui.c
+++ b/src/tui.c
@@ -116,8 +116,10 @@ void ui_start_screen() {
sstdout = newterm(NULL, stdout, stdin);
set_term(sstdout);
- main_win = newwin(LINES - RESROW, COLS, RESROW, 0);
- input_win = newwin(RESROW, COLS, 0, 0); // just 2 rows (RESROW = 2)
+ //main_win = newwin(LINES - RESROW, COLS, RESROW, 0);
+ //input_win = newwin(RESROW, COLS, 0, 0); // just 2 rows (RESROW = 2)
+ main_win = newwin(LINES - RESROW, COLS, 0, 0);
+ input_win = newwin(RESROW, COLS, LINES-RESROW, 0);
#ifdef USECOLORS
if (has_colors()) {