This commit is contained in:
parent
705324979b
commit
7a2266658b
@ -194,7 +194,9 @@ public abstract class Awk
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
Method m = c.getMethod (mn, a);
|
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)
|
catch (java.lang.reflect.InvocationTargetException e)
|
||||||
{
|
{
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
body
|
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;
|
background-color: white;
|
||||||
color: black;
|
color: black;
|
||||||
#padding: 10px 10px 10px 10px;
|
#padding: 10px 10px 10px 10px;
|
||||||
|
#font-size: 90%;
|
||||||
font-size: 90%;
|
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
@ -66,7 +65,7 @@ h5 { font-size: 100%; padding-left: 20px; }
|
|||||||
|
|
||||||
pre.code
|
pre.code
|
||||||
{
|
{
|
||||||
font-family: "Lucida TypeWriter", monotype, lucida, fixed;
|
font-family: "Courier New", "Lucida TypeWriter", monotype, fixed;
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
padding: 6px 6px 6px 6px;
|
padding: 6px 6px 6px 6px;
|
||||||
xbackground-color: #000000;
|
xbackground-color: #000000;
|
||||||
@ -74,7 +73,8 @@ pre.code
|
|||||||
#border: 1px dashed #779098;
|
#border: 1px dashed #779098;
|
||||||
#border: 1px solid #779098;
|
#border: 1px solid #779098;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: yellow;
|
color: white;
|
||||||
|
background-color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.linenum
|
.linenum
|
||||||
|
@ -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.
|
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 +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
|
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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user