made minor changes

This commit is contained in:
hyung-hwan 2009-03-23 09:05:43 +00:00
parent 342b3c9db6
commit b3dfc9d07b
2 changed files with 6 additions and 10 deletions

View File

@ -772,16 +772,11 @@ qse_printf (QSE_T("cmd->u.branch.target = [%p]\n"), cmd->u.branch.target);
break;
case QSE_T('r'):
/* TODO */
break;
case QSE_T('R'):
/* TODO */
break;
case QSE_T('w'):
/* TODO */
break;
case QSE_T('W'):
cmd->type = c;
/* TODO */
break;
@ -796,6 +791,7 @@ qse_printf (QSE_T("cmd->u.branch.target = [%p]\n"), cmd->u.branch.target);
break;
case QSE_T('s'):
/* TODO */
break;
case QSE_T('y'):
cmd->type = c;

View File

@ -101,13 +101,13 @@ struct qse_sed_cmd_t
/* r filename - append a text from a file */
QSE_SED_CMD_R = QSE_T('r'),
/* R filename - append a line from a file */
/* R filename - append a text from a file */
QSE_SED_CMD_RR = QSE_T('R'),
/* w filename - write pattern space to a file */
QSE_SED_CMD_W = QSE_T('r'),
QSE_SED_CMD_W = QSE_T('w'),
/* W filename - write first line of pattern space to a file */
QSE_SED_CMD_WW = QSE_T('R'),
QSE_SED_CMD_WW = QSE_T('W'),
QSE_SED_CMD_Q = QSE_T('q'),
QSE_SED_CMD_QQ = QSE_T('Q'),