This commit is contained in:
hyung-hwan 2007-12-10 08:12:01 +00:00
parent 705324979b
commit 7a2266658b
3 changed files with 9 additions and 7 deletions

View File

@ -194,7 +194,9 @@ public abstract class Awk
try
{
Method m = c.getMethod (mn, a);
m.invoke (this, /*new Object[] {*/ ctx, name, ret, args/*}*/) ;
//m.invoke (this, ctx, name, ret, args) ;
m.invoke (this, new Object[] {ctx, name, ret, args});
}
catch (java.lang.reflect.InvocationTargetException e)
{

View File

@ -1,11 +1,10 @@
body
{
font-family: verdana, "times new roman", tahoma, lucida, sans-serif;
font-family: georgia, verdana, "times new roman", tahoma, lucida, sans-serif;
background-color: white;
color: black;
#padding: 10px 10px 10px 10px;
font-size: 90%;
#font-size: 90%;
padding-left: 10px;
padding-right: 10px;
line-height: 1.3;
@ -66,7 +65,7 @@ h5 { font-size: 100%; padding-left: 20px; }
pre.code
{
font-family: "Lucida TypeWriter", monotype, lucida, fixed;
font-family: "Courier New", "Lucida TypeWriter", monotype, fixed;
font-size: 80%;
padding: 6px 6px 6px 6px;
xbackground-color: #000000;
@ -74,7 +73,8 @@ pre.code
#border: 1px dashed #779098;
#border: 1px solid #779098;
border: none;
background-color: yellow;
color: white;
background-color: black;
}
.linenum

View File

@ -54,7 +54,7 @@ debug ${top)/debug/bin $(top)/debug/lib ${top}/debug/inc
If you have preference for a particular compiler and the flags, you may explicitly specify them when you run the [[configure]] script. Here are presented a few such examples.
{{{
# HP-UX B.11.23 with HP ANSI C
# HP-UX B.11.23 with HP C/C++ compiler
CC=cc CFLAGS="-O2 +DD64 -D_INCLUDE__STDC_A1_SOURCE" LDFLAGS="+DD64" CXX=aCC CXXFLAGS="-O2 +DD64 -D_INCLUDE__STDC_A1_SOURCE" ./configure # 64-bit
CC=cc CFLAGS="-O2 +DD32 -D_INCLUDE__STDC_A1_SOURCE" LDFLAGS="+DD32" CXX=aCC CXXFLAGS="-O2 +DD32 -D_INCLUDE__STDC_A1_SOURCE" ./configure # 32-bit