Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
macaon2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexis Nasr
macaon2
Commits
7907a9dd
Commit
7907a9dd
authored
7 years ago
by
Franck Dary
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a bug where movement left arc was declared possible even when we finished reading the buffer
parent
fba42b89
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
maca_trans_parser/src/movements.c
+1
-1
1 addition, 1 deletion
maca_trans_parser/src/movements.c
with
1 addition
and
1 deletion
maca_trans_parser/src/movements.c
+
1
−
1
View file @
7907a9dd
...
...
@@ -442,7 +442,7 @@ int movement_eos_is_applicable(config *c)
int
movement_left_arc_is_applicable
(
config
*
c
,
int
label
)
{
if
(
stack_is_empty
(
config_get_stack
(
c
)))
return
0
;
if
(
word_buffer_
is_empty
(
config_get_buffer
(
c
)))
return
0
;
if
(
word_buffer_
end
(
config_get_buffer
(
c
)))
return
0
;
/* word on top of the stack should not have a governor */
// com here bug ?
if
(
word_get_gov
(
stack_top
(
config_get_stack
(
c
)))
!=
WORD_INVALID_GOV
)
return
0
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment