<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Commented out code can affect program flow in Developers</title>
    <link>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/775671#M1315</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been exploring Lua code and have come across a rather interesting quirk.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;According to the&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_016/proc/p1vlbjl2cnavu2n0zxf5u5vr4ma5.htm" target="_blank" rel="noopener"&gt;documentation&lt;/A&gt;&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;Any filerefs, librefs, macro variables, and so on, that you define within a SUBMIT and ENDSUBMIT block are available only within that block of code.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;However that isn't always the case.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;If you have a commented out run statement it seems to affect the program flow so that the macro doesn't get assigned at all.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;Below is an example.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc lua terminate restart;
submit;

code_wo_run = [[

/* data want;
 * set sashelp.class;
 */

%let safe_macro_var = After;
%put &amp;amp;=safe_macro_var;

]]

sas.submit(code_wo_run)


string_causes_error = [[

/* data want;
 * set sashelp.class;
 * run;
 */

%let after_run_macro_var = After;
%put &amp;amp;=after_run_macro_var;

]]

sas.submit(string_causes_error)

endsubmit;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;With the following as the log.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;1    %studio_hide_wrapper;
82   proc lua terminate restart;
83   submit;
84   
85   code_wo_run = [[
86   
87   /* data want;
88    * set sashelp.class;
89    */
90   
91   %let safe_macro_var = After;
92   %put &amp;amp;=safe_macro_var;
93   
94   ]]
95   
96   sas.submit(code_wo_run)
97   
98   
99   string_causes_error = [[
100  
101  /* data want;
102   * set sashelp.class;
103   * run;
104   */
105  
106  %let after_run_macro_var = After;
107  %put &amp;amp;=after_run_macro_var;
108  
109  ]]
110  
111  sas.submit(string_causes_error)
112  
113  endsubmit;
114  run;
NOTE: Lua initialized.
/* data want;
 * set sashelp.class;
 */
%let safe_macro_var = After;
%put &amp;amp;=safe_macro_var;
SAFE_MACRO_VAR=After
/* data want;
 * set sashelp.class;
 * run;
 */
%let after_run_macro_var = After;
%put &amp;amp;=after_run_macro_var;
WARNING: Apparent symbolic reference AFTER_RUN_MACRO_VAR not resolved.
after_run_macro_var
NOTE: TKLua terminated.
NOTE: PROCEDURE LUA used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      
115  
116  %studio_hide_wrapper;
127  
128  &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Oct 2021 15:26:22 GMT</pubDate>
    <dc:creator>DLangley</dc:creator>
    <dc:date>2021-10-21T15:26:22Z</dc:date>
    <item>
      <title>Commented out code can affect program flow</title>
      <link>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/775671#M1315</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been exploring Lua code and have come across a rather interesting quirk.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;According to the&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_016/proc/p1vlbjl2cnavu2n0zxf5u5vr4ma5.htm" target="_blank" rel="noopener"&gt;documentation&lt;/A&gt;&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;Any filerefs, librefs, macro variables, and so on, that you define within a SUBMIT and ENDSUBMIT block are available only within that block of code.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;However that isn't always the case.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;If you have a commented out run statement it seems to affect the program flow so that the macro doesn't get assigned at all.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;Below is an example.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc lua terminate restart;
submit;

code_wo_run = [[

/* data want;
 * set sashelp.class;
 */

%let safe_macro_var = After;
%put &amp;amp;=safe_macro_var;

]]

sas.submit(code_wo_run)


string_causes_error = [[

/* data want;
 * set sashelp.class;
 * run;
 */

%let after_run_macro_var = After;
%put &amp;amp;=after_run_macro_var;

]]

sas.submit(string_causes_error)

endsubmit;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;With the following as the log.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;1    %studio_hide_wrapper;
82   proc lua terminate restart;
83   submit;
84   
85   code_wo_run = [[
86   
87   /* data want;
88    * set sashelp.class;
89    */
90   
91   %let safe_macro_var = After;
92   %put &amp;amp;=safe_macro_var;
93   
94   ]]
95   
96   sas.submit(code_wo_run)
97   
98   
99   string_causes_error = [[
100  
101  /* data want;
102   * set sashelp.class;
103   * run;
104   */
105  
106  %let after_run_macro_var = After;
107  %put &amp;amp;=after_run_macro_var;
108  
109  ]]
110  
111  sas.submit(string_causes_error)
112  
113  endsubmit;
114  run;
NOTE: Lua initialized.
/* data want;
 * set sashelp.class;
 */
%let safe_macro_var = After;
%put &amp;amp;=safe_macro_var;
SAFE_MACRO_VAR=After
/* data want;
 * set sashelp.class;
 * run;
 */
%let after_run_macro_var = After;
%put &amp;amp;=after_run_macro_var;
WARNING: Apparent symbolic reference AFTER_RUN_MACRO_VAR not resolved.
after_run_macro_var
NOTE: TKLua terminated.
NOTE: PROCEDURE LUA used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      
115  
116  %studio_hide_wrapper;
127  
128  &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 15:26:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/775671#M1315</guid>
      <dc:creator>DLangley</dc:creator>
      <dc:date>2021-10-21T15:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Commented out code can affect program flow</title>
      <link>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/775689#M1316</link>
      <description>&lt;P&gt;You're mixing commenting types (/* */) and (*;) options together in the same lines/sections of code so what you're seeing most likely is some of those cancelling out each other. Pick one style/notation and stick with that one in general.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I use /**/ only when commenting out code in the middle of a statement or line and use *; format for comments the remainder of the time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does this generate any errors for you?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc lua terminate restart;
submit;

code_wo_run = [[

* data want;
 * set sashelp.class;


%let safe_macro_var = After;
%put &amp;amp;=safe_macro_var;

]]

sas.submit(code_wo_run)


string_causes_error = [[

* data want;
 * set sashelp.class;
 * run;
 

%let after_run_macro_var = After;
%put &amp;amp;=after_run_macro_var;

]]

sas.submit(string_causes_error)

endsubmit;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/378323"&gt;@DLangley&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've been exploring Lua code and have come across a rather interesting quirk.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to the&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_016/proc/p1vlbjl2cnavu2n0zxf5u5vr4ma5.htm" target="_blank" rel="noopener"&gt;documentation&lt;/A&gt;&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;Any filerefs, librefs, macro variables, and so on, that you define within a SUBMIT and ENDSUBMIT block are available only within that block of code.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;However that isn't always the case.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;If you have a commented out run statement it seems to affect the program flow so that the macro doesn't get assigned at all.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;Below is an example.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=""&gt;proc lua terminate restart;
submit;

code_wo_run = [[

/* data want;
 * set sashelp.class;
 */

%let safe_macro_var = After;
%put &amp;amp;=safe_macro_var;

]]

sas.submit(code_wo_run)


string_causes_error = [[

/* data want;
 * set sashelp.class;
 * run;
 */

%let after_run_macro_var = After;
%put &amp;amp;=after_run_macro_var;

]]

sas.submit(string_causes_error)

endsubmit;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;With the following as the log.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=""&gt;1    %studio_hide_wrapper;
82   proc lua terminate restart;
83   submit;
84   
85   code_wo_run = [[
86   
87   /* data want;
88    * set sashelp.class;
89    */
90   
91   %let safe_macro_var = After;
92   %put &amp;amp;=safe_macro_var;
93   
94   ]]
95   
96   sas.submit(code_wo_run)
97   
98   
99   string_causes_error = [[
100  
101  /* data want;
102   * set sashelp.class;
103   * run;
104   */
105  
106  %let after_run_macro_var = After;
107  %put &amp;amp;=after_run_macro_var;
108  
109  ]]
110  
111  sas.submit(string_causes_error)
112  
113  endsubmit;
114  run;
NOTE: Lua initialized.
/* data want;
 * set sashelp.class;
 */
%let safe_macro_var = After;
%put &amp;amp;=safe_macro_var;
SAFE_MACRO_VAR=After
/* data want;
 * set sashelp.class;
 * run;
 */
%let after_run_macro_var = After;
%put &amp;amp;=after_run_macro_var;
WARNING: Apparent symbolic reference AFTER_RUN_MACRO_VAR not resolved.
after_run_macro_var
NOTE: TKLua terminated.
NOTE: PROCEDURE LUA used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      
115  
116  %studio_hide_wrapper;
127  
128  &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 16:30:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/775689#M1316</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-10-21T16:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: Commented out code can affect program flow</title>
      <link>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/775787#M1317</link>
      <description>&lt;P&gt;Raise a support ticket with SAS.&amp;nbsp; It looks like the exact length of your string is hitting some bug.&amp;nbsp; I just insert a space between RUN and the semi-colon it works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have seen similar issue in SAS/Connect with RSUBMIT/ENDRSUBMIT blocks in the past.&amp;nbsp; When the length of text being sent happens to hit just exactly the right number of characters it gets confused.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Normally it causes hicups in the tokenization of the SAS code and confuses things.&amp;nbsp; In this case it seems to make it not recognize the %LET statement.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 23:03:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/775787#M1317</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-10-21T23:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Commented out code can affect program flow</title>
      <link>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/775818#M1318</link>
      <description>&lt;P&gt;Now that is interesting. I don't think it is the mixing of commenting that is doing it as&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;/*
 data want;
 set sashelp.class;
 run;
 */&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Causes problems.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Weirdly though you are correct that&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;* data want;
* set sashelp.class;
* run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Works....&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 07:43:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/775818#M1318</guid>
      <dc:creator>DLangley</dc:creator>
      <dc:date>2021-10-22T07:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Commented out code can affect program flow</title>
      <link>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/775819#M1319</link>
      <description>&lt;P&gt;Hi Tom.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;I don't think it is the string length that is causing it as putting a space before the run statement still causes the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;/*
data wantA;
set sashelp.class;
run;
*/

/*
data want;
set sashelp.class;
 run;
*/&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Both of those fail but&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;/*
data want;
set sashelp.class;
run ;
*/&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Does indeed work. (Not sure if the space is showing up correctly but it is there)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the run statement itself is causing problems.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 07:48:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/775819#M1319</guid>
      <dc:creator>DLangley</dc:creator>
      <dc:date>2021-10-22T07:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: Commented out code can affect program flow</title>
      <link>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/776139#M1320</link>
      <description>&lt;DIV id="trackPages"&gt;
&lt;DIV id="Page-2585928103286375766" class="page"&gt;
&lt;DIV id="DivData-2585928103286375766" class="pageData"&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;Hello,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;Through my investigation I found that this behaviour is addressed within the "Functions That Submit SAS Code" sub-section of the &lt;A class="cs7E736E" href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/proc/p07wjwkog4ia54n1b7586zlzmxwe.htm#p0wjmqnwfx30ccn18fl6plh0qk4p" target="new"&gt;&lt;SPAN class="csB7CE8BEA"&gt;PROC LUA Concepts&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN class="csF53863FF"&gt; documentation. In this it states:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs746A5FAB lia-indent-padding-left-30px"&gt;&lt;EM&gt;&lt;SPAN class="cs7924B8C6"&gt;When you submit SAS code, do not include these keywords within SAS comments:&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="cs746A5FAB lia-indent-padding-left-30px"&gt;&lt;EM&gt;&lt;SPAN class="cs7924B8C6"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="cs52C27F1B lia-indent-padding-left-30px"&gt;&lt;EM&gt;&lt;SPAN class="cs7924B8C6"&gt;run; &amp;nbsp;&amp;nbsp;&amp;nbsp;%macro&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="cs52C27F1B lia-indent-padding-left-30px"&gt;&lt;EM&gt;&lt;SPAN class="cs7924B8C6"&gt;quit; &amp;nbsp;&amp;nbsp;&amp;nbsp;%mend&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="cs746A5FAB lia-indent-padding-left-30px"&gt;&lt;EM&gt;&lt;SPAN class="cs7924B8C6"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="cs746A5FAB lia-indent-padding-left-30px"&gt;&lt;EM&gt;&lt;SPAN class="cs7924B8C6"&gt;The presence of these keywords within comments in a SAS code block might trigger warnings or errors in the SAS log and might cause unexpected results. To avoid this situation, modify the keywords by placing blank spaces or escape characters within them. For example, run ; or \%\macro within a comment would not trigger unexpected behavior.&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="cs746A5FAB"&gt;&lt;SPAN class="cs7924B8C6"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs746A5FAB lia-indent-padding-left-30px"&gt;&lt;EM&gt;&lt;SPAN class="cs7924B8C6"&gt;The return value from SAS.SUBMIT is assigned to the value of the SYSERR automatic macro variable.&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;So it seems that when assigned to the back-end processing macros, such statements cause the execution of the code to deviate.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 25 Oct 2021 08:00:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/776139#M1320</guid>
      <dc:creator>ThomasTribe</dc:creator>
      <dc:date>2021-10-25T08:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Commented out code can affect program flow</title>
      <link>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/776234#M1321</link>
      <description>&lt;P&gt;They say that a feature is just a bug that has been documented.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But still think this is a bug.&amp;nbsp; The parser should be able to figure this out, and if it can't, no telling what other subtle bugs might be hidden in there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 16:47:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Commented-out-code-can-affect-program-flow/m-p/776234#M1321</guid>
      <dc:creator>JackHamilton</dc:creator>
      <dc:date>2021-10-25T16:47:16Z</dc:date>
    </item>
  </channel>
</rss>

