I *think* you need to add them individually to your rstyle.cas file in order to
preserve the case.
Dawn
----- Original Message -----
From: Adrian Huessy
To: RBASE-L Mailing List
Sent: Wednesday, June 25, 2008 9:53 AM
Subject: [RBASE-L] - RStyle Not LowerCase
Is there a setting to prevent RStyle to make variable names lowercase?
Using RStyle in RBase Editor, the variable names are set to LowerCase or
UpperCase running RStyle.
For one code I wouldn't like that. Variable names should be let as tipped in.
-- Example before
SEt vAR vThisIsTheTest TexT = 'Hello'
IF (.vThisIsTheTest = .vOtherVariable) Then
write 'identical'
endif
RET
-- Should be transformed by RStyle to
SET VAR vThisIsTheTest TEXT = 'Hello'
IF (.vThisIsTheTest = .vOtherVariable) THEN
WRITE 'identical'
ENDIF
RETURN
-- but is transformed to
SET VAR vthisisthetest TEXT = 'Hello'
IF (.vthisisthetest = .vothervariable) THEN
WRITE 'identical'
ELSE
WRITE 'not identical'
ENDIF
RETURN
It seems I don't' see the tree (setting) within the forest.
TIA
Adrian