1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2025-04-21 12:27:27 +03:00

- tables no longer try to fill the available space in the variables area

- added string-valued expressions (on-going)
- loops, tables, and rows can now be deleted/undeleted (still need columns)



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5397 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner
2009-08-06 21:57:18 +00:00
parent 30664583a1
commit 766efce919
5 changed files with 143 additions and 3 deletions

7
expr.c
View File

@@ -101,6 +101,13 @@ int to_unit(struct num *n)
/* ----- primary expressions ----------------------------------------------- */
struct num op_string(const struct expr *self, const struct frame *frame)
{
fail("cannot evaluate string");
return undef;
}
struct num op_num(const struct expr *self, const struct frame *frame)
{
return self->u.num;