Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
20a5d57d
Commit
20a5d57d
authored
Mar 04, 2013
by
Yukihiro Matz Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
applied a patch from @cremo to support MSVC
parent
02dba483
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/parse.y
src/parse.y
+4
-2
No files found.
src/parse.y
View file @
20a5d57d
...
...
@@ -3692,6 +3692,7 @@ parse_heredoc_line(parser_state *p)
parser_heredoc_info *inf = parsing_heredoc_inf(p);
/* assert(inf != NULL); */
int c;
int line_head;
newtok(p);
while ((c = nextc(p)) != '\n') {
...
...
@@ -3725,7 +3726,7 @@ parse_heredoc_line(parser_state *p)
tokfix(p);
p->lineno++;
p->column = 0;
int
line_head = inf->line_head;
line_head = inf->line_head;
inf->line_head = TRUE;
if (line_head) {
/* check whether end of heredoc */
...
...
@@ -3765,6 +3766,7 @@ static int
parser_yylex(parser_state *p)
{
register int c;
int c2;
int space_seen = 0;
int cmd_state;
enum mrb_lex_state_enum last_state;
...
...
@@ -3931,7 +3933,7 @@ parser_yylex(parser_state *p)
(!IS_ARG() || space_seen)) {
/* heredocument check */
newtok(p); tokadd(p, '<'); tokadd(p, '<');
int
c2 = nextc(p);
c2 = nextc(p);
if (c2 == '-') {
tokadd(p, c2);
c2 = nextc(p);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment