Help for this page

Select Code to Download


  1. or download this
            
            push @a, _attr($atr) if #!_ateq($lat,$atr);
    ...
                    $lat->[AS_U]        != $atr->[AS_U]  ||
                    $lat->[AS_BOLD]        != $atr->[AS_BOLD] ||
                    $lat->[AS_BLINK]    != $atr->[AS_BLINK];
    
  2. or download this
        push @a, $atr if $lat ne $atr;
    
  3. or download this
    sub _atlayer
    {
    ...
        $_->[AS_BLINK]    = $_[0]->[AS_BLINK]    if  $_->[AS_BLINK] < 0;
        return $_;
    }
    
  4. or download this
    sub _atlayer
    {
    ...
        $_ &= $_[ 0 ];
        return $_;
    }
    
  5. or download this
    sub _atlayer
    {
    ...
    
        return $_;
    }