Skip to content
GitLab
Menu
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
1716fec2
Commit
1716fec2
authored
Aug 07, 1998
by
Arturo Espinosa
Browse files
Get cell references working
parent
e7977dca
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/parser.y
View file @
1716fec2
...
...
@@ -260,15 +260,18 @@ return_cellref (char *p)
/* Setup the cell reference information */
if (row_relative)
ref->row = parser_row - row;
ref->row = row - parser_row;
else
ref->row = row;
if (col_relative)
ref->col = parser_col - col;
ref->col = col - parser_col;
else
ref->col = col;
ref->col = col;
ref->row = row;
ref->col_relative = col_relative;
ref->row_relative = row_relative;
e->u.constant = v;
yylval.tree = e;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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