Re: Conditional assembly variable scope

2023-06-27 Thread Seymour J Metz
-LIST@LISTSERV.UGA.EDU] on behalf of Jonathan Scott [jonathan_sc...@vnet.ibm.com] Sent: Tuesday, June 27, 2023 1:04 PM To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: Conditional assembly variable scope > Would any know the difference in scope > Of a local used in open code and a globa

Re: Conditional assembly variable scope

2023-06-27 Thread Seymour J Metz
Perryman [jperr...@pacbell.net] Sent: Tuesday, June 27, 2023 3:33 PM To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: Conditional assembly variable scope Joseph, I don't think your question has been understood. If so, then your question hasn't been answered. My interpretation of your question

Re: Conditional assembly variable scope

2023-06-27 Thread Seymour J Metz
Mainframe Assembler List [ASSEMBLER-LIST@LISTSERV.UGA.EDU] on behalf of Farley, Peter [0dc9d8785c29-dmarc-requ...@listserv.uga.edu] Sent: Tuesday, June 27, 2023 2:45 PM To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: Conditional assembly variable scope OT Re: "Oooh! Oooh! Oooh!" -- A

Re: Conditional assembly variable scope

2023-06-27 Thread Jon Perryman
different variables. GBLC in open code and GBLC in a macro are the same variable. Charles -Original Message- From: IBM Mainframe Assembler List [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] On Behalf Of Jonathan Scott Sent: Tuesday, June 27, 2023 10:05 AM To: ASSEMBLER-LIST@LISTSERV.UGA.ED

Re: Conditional assembly variable scope

2023-06-27 Thread Farley, Peter
day, June 27, 2023 2:34 PM To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: Conditional assembly variable scope On 6/27/23 12:17:21, Seymour J Metz wrote: > No. If you have a business case, maybe an RFE for name spaces. Oooh! Oooh! Oooh! Also for label symbols as well as condit

Re: Conditional assembly variable scope

2023-06-27 Thread Seymour J Metz
Or, better, QUAL in IBMAP. From: IBM Mainframe Assembler List on behalf of Paul Gilmartin <0014e0e4a59b-dmarc-requ...@listserv.uga.edu> Sent: Tuesday, June 27, 2023 2:33 PM To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: Conditional as

Re: Conditional assembly variable scope

2023-06-27 Thread Paul Gilmartin
On 6/27/23 12:17:21, Seymour J Metz wrote: No. If you have a business case, maybe an RFE for name spaces. Oooh! Oooh! Oooh! Also for label symbols as well as conditional symbols, freeing the programmer of the burden of using distinct component prefixes in data area definitions. It could

Re: Conditional assembly variable scope

2023-06-27 Thread Seymour J Metz
GA.EDU Subject: Re: Conditional assembly variable scope On 6/27/23 11:04:43, Jonathan Scott wrote: >> Would any know the difference in scope >> Of a local used in open code and a global used >> In a macro the both seem to have a scope of the entire assembly > > A local variable

Re: Conditional assembly variable scope

2023-06-27 Thread Paul Gilmartin
On 6/27/23 11:04:43, Jonathan Scott wrote: Would any know the difference in scope Of a local used in open code and a global used In a macro the both seem to have a scope of the entire assembly A local variable is unique to the context where it is defined, so a local variable defined in open

Re: Conditional assembly variable scope

2023-06-27 Thread Charles Mills
, 2023 10:05 AM To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: Conditional assembly variable scope > Would any know the difference in scope > Of a local used in open code and a global used > In a macro the both seem to have a scope of the entire assembly A local variable is unique to th

Re: Conditional assembly variable scope

2023-06-27 Thread Joseph Reichman
; the global , even if there is a GBLx in open code. > > > From: IBM Mainframe Assembler List on > behalf of Joseph Reichman > Sent: Tuesday, June 27, 2023 12:44 PM > To: ASSEMBLER-LIST@LISTSERV.UGA.EDU > Subject: Re: Conditional a

Re: Conditional assembly variable scope

2023-06-27 Thread Seymour J Metz
@LISTSERV.UGA.EDU Subject: Re: Conditional assembly variable scope Sorry but I don’t follow If LCLx is declared in open code And also let’s say assigned a value the scope is the entire assembly If GBLx is declared inside a macro And also say set It’s scope is too the entire assembly ? > On Jun

Re: Conditional assembly variable scope

2023-06-27 Thread Joseph Reichman
Got it thanks > On Jun 27, 2023, at 1:09 PM, Jonathan Scott > wrote: > >  >> >> Would any know the difference in scope >> Of a local used in open code and a global used >> In a macro the both seem to have a scope of the entire assembly > > A local variable is unique to the context where

Re: Conditional assembly variable scope

2023-06-27 Thread Jonathan Scott
> Would any know the difference in scope > Of a local used in open code and a global used > In a macro the both seem to have a scope of the entire assembly A local variable is unique to the context where it is defined, so a local variable defined in open code applies to all open code, and a local

Re: Conditional assembly variable scope

2023-06-27 Thread Joseph Reichman
SSEMBLER-LIST@LISTSERV.UGA.EDU > Subject: Conditional assembly variable scope > > Would any know the difference in scope > Of a local used in open code and a global used > In a macro the both seem to have a scope of the entire assembly

Re: Conditional assembly variable scope

2023-06-27 Thread Seymour J Metz
: Conditional assembly variable scope Would any know the difference in scope Of a local used in open code and a global used In a macro the both seem to have a scope of the entire assembly

Conditional assembly variable scope

2023-06-27 Thread Joseph Reichman
Would any know the difference in scope Of a local used in open code and a global used In a macro the both seem to have a scope of the entire assembly