Changeset 3340
- Timestamp:
- Dec 13, 2018, 2:40:45 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/tabsspaces.e ¶
r3339 r3340 118 118 119 119 ; --------------------------------------------------------------------------- 120 defc TabCompressAll 121 parse arg TabWidth . 122 if TabWidth = '' | not IsNum( TabWidth) then 123 TabWidth = word( .tabs, 1) 124 endif 125 fIndentOnly = 1 -- TODO ############################################## 126 do Line = 1 to .last 127 rcx = TabCompressLine( Line, TabWidth, fIndentOnly) 128 enddo 129 130 ; --------------------------------------------------------------------------- 120 131 defc Tabs2Spaces, TabExpand 121 132 parse arg arg1 . … … 173 184 174 185 rcx = TabExpandLine( Line, TabWidth, '', StartCol, EndCol) 186 enddo 187 188 ; --------------------------------------------------------------------------- 189 defc TabExpandAll 190 parse arg TabWidth . 191 if TabWidth = '' | not IsNum( TabWidth) then 192 TabWidth = word( .tabs, 1) 193 endif 194 do Line = 1 to .last 195 rcx = TabExpandLine( Line, TabWidth) 175 196 enddo 176 197
Note:
See TracChangeset
for help on using the changeset viewer.