Changeset 5011


Ignore:
Timestamp:
May 5, 2022, 1:42:55 AM (3 years ago)
Author:
Andreas Schnellbacher
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/stdcmds.e

    r4937 r5011  
    932932; ---------------------------------------------------------------------------
    933933defc TimeStamp
    934    universal countryinfo
     934   --universal countryinfo
    935935
    936936   parse value GetDateTime() with Hour24 Minutes Seconds . Day MonthNum Year0 Year1 .
    937937   call NextCmdAltersText()
    938    parse value countryinfo with 22 datesep 23 24 timesep 25
     938   --parse value countryinfo with 22 datesep 23 24 timesep 25
     939   datesep = '-'  -- ISO
     940   timesep = ':'  -- ISO
    939941   keyin rightstr( Year0 + 256 * Year1, 4, 0)''datesep''rightstr( monthnum, 2, 0)''datesep''rightstr( Day, 2, 0)' ' ||
    940942         rightstr( hour24, 2)''timesep''rightstr( Minutes, 2, '0')''timesep''rightstr( Seconds, 2, '0')'  '
     
    951953; ---------------------------------------------------------------------------
    952954defc Ver
    953    sayerror EDITOR_VER__MSG ver( 0)
     955   'SayError 'EDITOR_VER__MSG ver( 0)
    954956
    955957; ---------------------------------------------------------------------------
     
    959961defc ShowMark
    960962   getfileid curfid
     963   -- marktype() returns only CHAR, BLOCK or LINE, not CHARG and not BLOCKG.
     964   mt = marktype()
     965
    961966   getmark firstline, lastline, firstcol, lastcol, markfid
    962    mt = marktype()
    963 
    964    Next = 'firstline lastline firstcol lastcol = 'firstline lastline firstcol lastcol ||
    965           ', markfid curfid = 'markfid curfid', marktype = 'mt
     967   Next = 'getmark : firstline lastline firstcol lastcol = 'firstline lastline firstcol lastcol ||
     968                 ', markfid curfid = 'markfid curfid', marktype = 'mt
    966969   'SayHint' Next
    967970   dprintf( Next)
    968971
     972   -- lastcol is 1 more here. The 'g' variants don't include the attributes
     973   -- at negative offset for the following col.
     974   getmarkg firstline, lastline, firstcol, lastcol, markfid
     975   Next = 'getmarkg: firstline lastline firstcol lastcol = 'firstline lastline firstcol lastcol ||
     976                  ', markfid curfid = 'markfid curfid', marktype = 'mt
     977   'SayHint' Next
     978   dprintf( Next)
     979
Note: See TracChangeset for help on using the changeset viewer.