summaryrefslogtreecommitdiffstats
path: root/src/interp.c
diff options
context:
space:
mode:
authorAndrés <andmarti@gmail.com>2021-03-06 18:10:14 -0300
committerAndrés <andmarti@gmail.com>2021-03-06 18:10:14 -0300
commitc9c193b9e5411a08ccda8d3d0f12a6cd9c7a6df8 (patch)
tree70d39c71c881cf3c142aeccfcbfd14d1a56c4db0 /src/interp.c
parent95e5f079a69e20ed1116d44b57400c1ccb76529b (diff)
added loading progress - issue #499
Diffstat (limited to 'src/interp.c')
-rw-r--r--src/interp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp.c b/src/interp.c
index fe25204..4e1516e 100644
--- a/src/interp.c
+++ b/src/interp.c
@@ -713,7 +713,7 @@ double dotts(int hr, int min, int sec) {
/**
* \brief TODO Document dorow()
- *
+ *
* \param[in] ep
*
* \return none
@@ -1049,8 +1049,8 @@ double eval(register struct ent * ent, register struct enode * e) {
e->e.k = (double) 0;
cellerror = CELLERROR;
}
- if (ent && getVertex(graph, ent, 0) == NULL) GraphAddVertex(graph, ent);
-
+ //if (ent && getVertex(graph, ent, 0) == NULL) GraphAddVertex(graph, ent);
+ // Commented 06/03/2021 for #issue 499
return (e->e.k);
case GETENT:
if (ent && getVertex(graph, ent, 0) == NULL) GraphAddVertex(graph, ent);