Skip to content

Commit

Permalink
fix(CompareRTFWithDataset): 变量名与保留字冲突 (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
Snoopy1866 authored Jan 8, 2025
1 parent 0031828 commit 97fdbd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gbk/CompareRTFWithDataset.sas
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
ifc(not missing(&&dataset_col_&i), strip(put(&&dataset_col_&i, &&dataset_col_format_&i)), '') as &&dataset_col_&i
%end;
%else %do;
&&dataset_col_&i
"&&dataset_col_&i"n
%end;

%if &i < &dataset_col_n %then %do; %bquote(,) %end;
Expand Down
2 changes: 1 addition & 1 deletion utf8/CompareRTFWithDataset.sas
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
ifc(not missing(&&dataset_col_&i), strip(put(&&dataset_col_&i, &&dataset_col_format_&i)), '') as &&dataset_col_&i
%end;
%else %do;
&&dataset_col_&i
"&&dataset_col_&i"n
%end;

%if &i < &dataset_col_n %then %do; %bquote(,) %end;
Expand Down

0 comments on commit 97fdbd4

Please sign in to comment.