*** empty log message ***

This commit is contained in:
2007-04-26 15:37:06 +00:00
parent 8ab1af82e4
commit 9f2ad7e2fb
4 changed files with 24 additions and 9 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.c,v 1.193 2007-04-15 15:26:58 bacon Exp $
* $Id: awk.c,v 1.194 2007-04-26 15:34:19 bacon Exp $
*/
#include <ase/awk/awk.h>
@ -713,7 +713,7 @@ static void on_run_start (ase_awk_run_t* run, void* custom)
static int print_awk_value (ase_awk_pair_t* pair, void* arg)
{
ase_awk_run_t* run = (ase_awk_run_t*)arg;
dprintf (ASE_T("%s = "), (const ase_char_t*)pair->key);
dprintf (ASE_T("%.*s = "), pair->key.len, pair->key.ptr);
ase_awk_dprintval (run, (ase_awk_val_t*)pair->val);
dprintf (ASE_T("\n"));
return 0;

View File

@ -331,7 +331,7 @@ namespace ASETestCom
this.Controls.Add(this.panel2);
this.Controls.Add(this.statusStrip1);
this.Name = "AwkForm";
this.Text = "ASE.COM.NET.AWK";
this.Text = "ASE.CNT.AWK";
this.tableLayoutPanel1.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();

View File

@ -18,7 +18,7 @@ namespace ASETestCom
private void btnRun_Click(object sender, EventArgs e)
{
Awk awk = new StdAwk ();
ASECNT.Awk awk = new ASECNT.StdAwk ();
//System.Text.Encoding.Default
awk.SourceInputStream = new MemoryStream (UnicodeEncoding.UTF8.GetBytes(tbxSourceInput.Text));