Changeset 3340


Ignore:
Timestamp:
Dec 13, 2018, 2:40:45 AM (6 years ago)
Author:
Andreas Schnellbacher
Message:
File:
1 edited

Legend:

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

    r3339 r3340  
    118118
    119119; ---------------------------------------------------------------------------
     120defc 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; ---------------------------------------------------------------------------
    120131defc Tabs2Spaces, TabExpand
    121132   parse arg arg1 .
     
    173184
    174185      rcx = TabExpandLine( Line, TabWidth, '', StartCol, EndCol)
     186   enddo
     187
     188; ---------------------------------------------------------------------------
     189defc 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)
    175196   enddo
    176197
Note: See TracChangeset for help on using the changeset viewer.