<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mediawiki.kfs.oeaw.ac.at/stx/docs/wiki/index.php?action=history&amp;feed=atom&amp;title=Programmer_Guide%2FConcepts%2FArgument_Passing</id>
	<title>Programmer Guide/Concepts/Argument Passing - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://mediawiki.kfs.oeaw.ac.at/stx/docs/wiki/index.php?action=history&amp;feed=atom&amp;title=Programmer_Guide%2FConcepts%2FArgument_Passing"/>
	<link rel="alternate" type="text/html" href="https://mediawiki.kfs.oeaw.ac.at/stx/docs/wiki/index.php?title=Programmer_Guide/Concepts/Argument_Passing&amp;action=history"/>
	<updated>2026-05-06T13:55:13Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>https://mediawiki.kfs.oeaw.ac.at/stx/docs/wiki/index.php?title=Programmer_Guide/Concepts/Argument_Passing&amp;diff=9713&amp;oldid=prev</id>
		<title>Jw at 07:55, 18 January 2018</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.kfs.oeaw.ac.at/stx/docs/wiki/index.php?title=Programmer_Guide/Concepts/Argument_Passing&amp;diff=9713&amp;oldid=prev"/>
		<updated>2018-01-18T07:55:24Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 09:55, 18 January 2018&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;Many macros use the call-format: name command arguments (e.g. &amp;lt;code&amp;gt;MSGBOX MSG text&amp;lt;/code&amp;gt;). If you want to pass quoted arguments to such a macro, use the format &amp;lt;code&amp;gt;MSGBOX &amp;#039;MSG text&amp;#039;&amp;lt;/code&amp;gt; instead of &amp;lt;code&amp;gt;MSGBOX MSG &amp;#039;text&amp;#039;&amp;lt;/code&amp;gt;. This is necessary because the argument string &amp;lt;code&amp;gt;MSG &amp;#039;text&amp;#039;&amp;lt;/code&amp;gt; is passed (after command-line processing) as &amp;lt;code&amp;gt;MSGtext&amp;lt;/code&amp;gt; to the macro.If a new shell is called to run a macro, the id (8 hex digits) is assigned to the variable &amp;lt;code&amp;gt;#SHELL&amp;lt;/code&amp;gt; of the caller. In the new shell, the variable &amp;lt;code&amp;gt;SHELL&amp;lt;/code&amp;gt; is set to &amp;#039;&amp;lt;code&amp;gt;this_shellid caller_shellid&amp;lt;/code&amp;gt;&amp;#039;. The two variables can be used to identify the shells in communication messages.It is not necessary to use the command &amp;lt;code&amp;gt;MACRO&amp;lt;/code&amp;gt; explicitly, because the interpreter tries to execute all &amp;#039;non-shell&amp;#039; commands as a macro. This means the command line &amp;lt;code&amp;gt;MACRO macroname&amp;lt;/code&amp;gt; is equivalent to command line &amp;lt;code&amp;gt;macroname&amp;lt;/code&amp;gt;.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;Many macros use the call-format: name command arguments (e.g. &amp;lt;code&amp;gt;MSGBOX MSG text&amp;lt;/code&amp;gt;). If you want to pass quoted arguments to such a macro, use the format &amp;lt;code&amp;gt;MSGBOX &amp;#039;MSG text&amp;#039;&amp;lt;/code&amp;gt; instead of &amp;lt;code&amp;gt;MSGBOX MSG &amp;#039;text&amp;#039;&amp;lt;/code&amp;gt;. This is necessary because the argument string &amp;lt;code&amp;gt;MSG &amp;#039;text&amp;#039;&amp;lt;/code&amp;gt; is passed (after command-line processing) as &amp;lt;code&amp;gt;MSGtext&amp;lt;/code&amp;gt; to the macro.If a new shell is called to run a macro, the id (8 hex digits) is assigned to the variable &amp;lt;code&amp;gt;#SHELL&amp;lt;/code&amp;gt; of the caller. In the new shell, the variable &amp;lt;code&amp;gt;SHELL&amp;lt;/code&amp;gt; is set to &amp;#039;&amp;lt;code&amp;gt;this_shellid caller_shellid&amp;lt;/code&amp;gt;&amp;#039;. The two variables can be used to identify the shells in communication messages.It is not necessary to use the command &amp;lt;code&amp;gt;MACRO&amp;lt;/code&amp;gt; explicitly, because the interpreter tries to execute all &amp;#039;non-shell&amp;#039; commands as a macro. This means the command line &amp;lt;code&amp;gt;MACRO macroname&amp;lt;/code&amp;gt; is equivalent to command line &amp;lt;code&amp;gt;macroname&amp;lt;/code&amp;gt;.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;See also [[Programmer_Guide/Source_code#Definition_of_Macros|Definition of Macros]].&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Jw</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.kfs.oeaw.ac.at/stx/docs/wiki/index.php?title=Programmer_Guide/Concepts/Argument_Passing&amp;diff=2942&amp;oldid=prev</id>
		<title>Christian: Created page with &#039;Many macros use the call-format: name command arguments (e.g. &lt;code&gt;MSGBOX MSG text&lt;/code&gt;). If you want to pass quoted arguments to such a macro, use the format &lt;code&gt;MSGBOX &#039;MS…&#039;</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.kfs.oeaw.ac.at/stx/docs/wiki/index.php?title=Programmer_Guide/Concepts/Argument_Passing&amp;diff=2942&amp;oldid=prev"/>
		<updated>2011-04-05T16:26:04Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;#039;Many macros use the call-format: name command arguments (e.g. &amp;lt;code&amp;gt;MSGBOX MSG text&amp;lt;/code&amp;gt;). If you want to pass quoted arguments to such a macro, use the format &amp;lt;code&amp;gt;MSGBOX &amp;#039;MS…&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Many macros use the call-format: name command arguments (e.g. &amp;lt;code&amp;gt;MSGBOX MSG text&amp;lt;/code&amp;gt;). If you want to pass quoted arguments to such a macro, use the format &amp;lt;code&amp;gt;MSGBOX &amp;#039;MSG text&amp;#039;&amp;lt;/code&amp;gt; instead of &amp;lt;code&amp;gt;MSGBOX MSG &amp;#039;text&amp;#039;&amp;lt;/code&amp;gt;. This is necessary because the argument string &amp;lt;code&amp;gt;MSG &amp;#039;text&amp;#039;&amp;lt;/code&amp;gt; is passed (after command-line processing) as &amp;lt;code&amp;gt;MSGtext&amp;lt;/code&amp;gt; to the macro.If a new shell is called to run a macro, the id (8 hex digits) is assigned to the variable &amp;lt;code&amp;gt;#SHELL&amp;lt;/code&amp;gt; of the caller. In the new shell, the variable &amp;lt;code&amp;gt;SHELL&amp;lt;/code&amp;gt; is set to &amp;#039;&amp;lt;code&amp;gt;this_shellid caller_shellid&amp;lt;/code&amp;gt;&amp;#039;. The two variables can be used to identify the shells in communication messages.It is not necessary to use the command &amp;lt;code&amp;gt;MACRO&amp;lt;/code&amp;gt; explicitly, because the interpreter tries to execute all &amp;#039;non-shell&amp;#039; commands as a macro. This means the command line &amp;lt;code&amp;gt;MACRO macroname&amp;lt;/code&amp;gt; is equivalent to command line &amp;lt;code&amp;gt;macroname&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Christian</name></author>
	</entry>
</feed>