Changeset 5011
- Timestamp:
- May 5, 2022, 1:42:55 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/stdcmds.e ¶
r4937 r5011 932 932 ; --------------------------------------------------------------------------- 933 933 defc TimeStamp 934 universal countryinfo934 --universal countryinfo 935 935 936 936 parse value GetDateTime() with Hour24 Minutes Seconds . Day MonthNum Year0 Year1 . 937 937 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 939 941 keyin rightstr( Year0 + 256 * Year1, 4, 0)''datesep''rightstr( monthnum, 2, 0)''datesep''rightstr( Day, 2, 0)' ' || 940 942 rightstr( hour24, 2)''timesep''rightstr( Minutes, 2, '0')''timesep''rightstr( Seconds, 2, '0')' ' … … 951 953 ; --------------------------------------------------------------------------- 952 954 defc Ver 953 sayerrorEDITOR_VER__MSG ver( 0)955 'SayError 'EDITOR_VER__MSG ver( 0) 954 956 955 957 ; --------------------------------------------------------------------------- … … 959 961 defc ShowMark 960 962 getfileid curfid 963 -- marktype() returns only CHAR, BLOCK or LINE, not CHARG and not BLOCKG. 964 mt = marktype() 965 961 966 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 966 969 'SayHint' Next 967 970 dprintf( Next) 968 971 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.