Re: Style (was: LISTDSI - ...)

2024-01-07 Thread Wayne Bickerdike
I often create a function to deal with quotes. Typically I'll use an UNQUOTE function and a REQUOTE function. My use of the letter Q was by way of an example. MyDSN = UNQUOTE(MyDSN) MyDSN = REQUOTE(MyDSN) Use of the STRIP function is recommended too. This is where embedded quotes can confuse: ST

Re: Style (was: LISTDSI - ...)

2024-01-06 Thread Paul Gilmartin
On Sun, 7 Jan 2024 01:36:44 +, Seymour J Metz wrote: >It is a capital error to assume unfamiliarity just because sombody eschews a >language feature. I am a very heavy user of abuttment in REXX. I agree with >Wayne that there is a good case for using variables in this particular case, > I ag

Re: Style (was: LISTDSI - ...)

2024-01-06 Thread Seymour J Metz
/mason.gmu.edu/~smetz3 עַם יִשְׂרָאֵל חַי נֵ֣צַח יִשְׂרָאֵ֔ל לֹ֥א יְשַׁקֵּ֖ר From: IBM Mainframe Discussion List on behalf of Paul Gilmartin <042bfe9c879d-dmarc-requ...@listserv.ua.edu> Sent: Saturday, January 6, 2024 10:58 AM To: IBM-MAIN@LISTSERV

Re: Style (was: LISTDSI - ...)

2024-01-06 Thread Seymour J Metz
To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Style (was: LISTDSI - ...) The issue goes beyond what remedies are available. An open source project depends upon voluntary contributors. If potential contributors don't trust you to obey license term, you risk being abandoned. OTOH, changing the li

Re: Style (was: LISTDSI - ...)

2024-01-06 Thread Seymour J Metz
Paul Gilmartin <042bfe9c879d-dmarc-requ...@listserv.ua.edu> Sent: Saturday, January 6, 2024 10:58 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Style (was: LISTDSI - ...) On Sat, 6 Jan 2024 14:25:09 +1100, Wayne Bickerdike wrote: >Quoted strings always gave me grief. I started to u

Re: Style (was: LISTDSI - ...)

2024-01-06 Thread Wayne Bickerdike
Way to miss the point. On Sun, Jan 7, 2024 at 2:58 AM Paul Gilmartin < 042bfe9c879d-dmarc-requ...@listserv.ua.edu> wrote: > On Sat, 6 Jan 2024 14:25:09 +1100, Wayne Bickerdike wrote: > > >Quoted strings always gave me grief. I started to use Q='7D'X and > >concatenate my strings this way: > >

Style (was: LISTDSI - ...)

2024-01-06 Thread Paul Gilmartin
On Sat, 6 Jan 2024 14:25:09 +1100, Wayne Bickerdike wrote: >Quoted strings always gave me grief. I started to use Q='7D'X and >concatenate my strings this way: > >Str = Q||DsNAme||Q. >LISTDSI(Str) > I find that less transparent and surely more verbose than: LISTDSI( "'"DsNAme"'" ) or even: