Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
gnumeric
Commits
cb5a5098
Commit
cb5a5098
authored
Jul 24, 1998
by
Manish Vachharajani
Browse files
Some syntax error fixes for gnumeric, but the yacc stuff is broken
now, oh well, I gave it a shot :)
parent
4c8cfaf9
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/expr.c
View file @
cb5a5098
...
...
@@ -93,7 +93,7 @@ eval_release_node (EvalNode *node)
Value
*
eval_node
(
EvalNode
*
node
)
{
case
(
node
->
oper
)
{
switch
(
node
->
oper
){
case
OP_ADD
:
case
OP_SUB
:
case
OP_MULT
:
...
...
src/expr.h
View file @
cb5a5098
...
...
@@ -33,10 +33,9 @@ typedef struct {
}
CellPos
;
typedef
struct
{
int
col
,
int
row
;
unsigned
int
col_abs
:
1
unsigned
int
row_abs
:
1
int
col
,
row
;
unsigned
int
col_abs
:
1
;
unsigned
int
row_abs
:
1
;
}
CellRef
;
typedef
struct
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment