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

- when editing a value list, we need to return the values and free them in case

of successful validation
- free previous expression in set_col_values
- added rapid entry also for table values (fill the row)



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5460 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner
2009-08-16 05:05:12 +00:00
parent 64f80e84a2
commit e3794589a8
8 changed files with 147 additions and 6 deletions

7
fpd.l
View File

@@ -49,6 +49,13 @@ void scan_var(const char *s)
yy_scan_string(s);
}
void scan_values(const char *s)
{
start_token = START_VALUES;
yy_scan_string(s);
}
%}