Changeset 4275
- Timestamp:
- Nov 8, 2020, 8:15:17 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/math.e ¶
r4004 r4275 204 204 -- If the next line has spaces in the proper posiition, fill them, 205 205 -- don't insert a new line. 206 if lastline <.last then206 if lastline < .last then 207 207 getline line, lastline + 1 208 208 else … … 214 214 if not verify( dash, ch) & ch <> ' ' then 215 215 lastline = lastline + 1 216 if lastline <.last then216 if lastline < .last then 217 217 getline line, lastline + 1 218 218 endif 219 219 endif 220 if not verify( substr( line, lpad + 1, res_len), ' ') & lastline <.last then220 if not verify( substr( line, lpad + 1, res_len), ' ') & lastline < .last then 221 221 pReplaceLine( overlay( result, line, lpad + 1), lastline + 1) 222 222 else 223 223 pad = substr( ' ', 1, lpad) 224 insertline pad ||result, lastline + 1, fileid224 insertline pad''result, lastline + 1, fileid 225 225 endif 226 226
Note:
See TracChangeset
for help on using the changeset viewer.