Re: How can I invoke an arbitrary macro with arbitrary KEYWORD

2021-09-30 Thread Charles Mills
On Behalf Of Ngan, Robert (DXC Luxoft) Sent: Thursday, September 30, 2021 10:03 AM To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: How can I invoke an arbitrary macro with arbitrary KEYWORD Thanks, I'll try AINSERT. For my current use case, this limitation is acceptable.

Re: How can I invoke an arbitrary macro with arbitrary KEYWORD

2021-09-30 Thread Ngan, Robert (DXC Luxoft)
invoke an arbitrary macro with arbitrary KEYWORD Ref: Your note of Wed, 29 Sep 2021 23:10:27 + The only way to invoke a macro with dynamically specified keyword parameters is to use AINSERT, which has the limitation that the macro will only get invoked after macro processing returns

Re: How can I invoke an arbitrary macro with arbitrary KEYWORD parameters?

2021-09-30 Thread Ngan, Robert (DXC Luxoft)
invoke an arbitrary macro with arbitrary KEYWORD parameters? Robert, IIRC (I hope so) I got it to work with all parms concatenated into a single variable. You might give it a try ... Success! Abe === Op 30/09/2021 om 01:10 schreef Ngan, Robert (DXC Luxoft): > I’m trying to invoke a ma

Re: How can I invoke an arbitrary macro with arbitrary KEYWORD

2021-09-30 Thread Jonathan Scott
Ref: Your note of Wed, 29 Sep 2021 23:10:27 + The only way to invoke a macro with dynamically specified keyword parameters is to use AINSERT, which has the limitation that the macro will only get invoked after macro processing returns to the open code level. You can of course use AINSERT

Re: How can I invoke an arbitrary macro with arbitrary KEYWORD parameters?

2021-09-29 Thread Abe Kornelis
Robert, IIRC (I hope so) I got it to work with all parms concatenated into a single variable. You might give it a try ... Success! Abe === Op 30/09/2021 om 01:10 schreef Ngan, Robert (DXC Luxoft): > I’m trying to invoke a macro specifying keyword parameters within another > macro, where the

How can I invoke an arbitrary macro with arbitrary KEYWORD parameters?

2021-09-29 Thread Ngan, Robert (DXC Luxoft)
I’m trying to invoke a macro specifying keyword parameters within another macro, where the keyword and its value were passed to the outer macro. However, the assembler is always interpreting keyword=value as a SYSLIST value. Anyone know how this can be done, or even if it is possible? The code