Skip to content

Commit 6e8505c

Browse files
author
Reinhold Bertram
committed
adding . to unary operators fix error of tokenize_code but doesn't give expected behavior
1 parent 7c8432b commit 6e8505c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tokenize_code.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
'.+' '.-' '.*' './' '.^' '.\' ...
3434
'>' '<' '~' '==' '>=' '<=' '~=' ...
3535
'@' '=' ',' ';' '||' '&&' '|' '&' '...' ':'};
36-
unary_operators = '+-@~';
36+
unary_operators = '+-@~.';
3737

3838
spaces = sprintf(' \t');
3939
breaks = sprintf('\n\r');

0 commit comments

Comments
 (0)