Displaying 2 results from an estimated 2 matches for "a_limit".
Did you mean:
__limit
2007 Mar 24
3
Patch for superredcloth to enable textile table headers
...STYL = ( "{" [^}]+ >A %{ STORE(style) } "}" ) ;
S_CSPN = ( "\\" [0-9]+ >A %{ STORE(colspan) } ) ;
S_RSPN = ( "/" [0-9]+ >A %{ STORE(rowspan) } ) ;
+ D_HEADER = "_" %{ ASET(th, true) } ;
A = ( ( A_HLGN | A_VLGN )* ) ;
A2 = ( A_LIMIT? ) ;
S = ( S_CSPN | S_RSPN )* ;
C = ( C_CLAS | C_STYL | C_LNGE )* ;
+ D = ( D_HEADER ) ;
N_CONT = "_" %{ ASET(start, continue) };
N_NUM = digit+ >A %{ STORE(start) };
N = ( N_CONT | N_NUM )? ;
Index: lib/superredcloth.rb
============================================...
2016 Jul 14
6
Several patches of ARM NEON optimization
I rebased my previous 3 patches to the current master with minor changes.
Patches 1 to 3 replace all my previous submitted patches.
Patches 4 and 5 are new.
Thanks,
Linfeng Zhang