Added macro's for long selections

This commit is contained in:
ceriel
1991-03-06 10:52:34 +00:00
parent 2a8682bf68
commit 94d759700a
10 changed files with 38 additions and 34 deletions

View File

@@ -347,13 +347,13 @@ stb_string(df, kind)
break;
case T_REAL:
addc_db_str('r');
if (! df->con_const.TOK_REAL) {
if (! df->con_const.TOK_RSTR) {
char buf2[FLT_STRLEN];
flt_flt2str(&df->con_const.TOK_RVAL, buf2, FLT_STRLEN);
adds_db_str(buf2);
}
else adds_db_str(df->con_const.TOK_REAL);
else adds_db_str(df->con_const.TOK_RSTR);
addc_db_str(';');
break;
case T_STRING: {