Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
8a5a54c3
...
8a5a54c3c7f4cbc32f805c499afea0f5923cd7a2
authored
2003-08-11 11:55:25 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(fi production): Preserve the result of the last comparison.
1 parent
670ab827
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
mh/mh_fmtgram.y
mh/mh_fmtgram.y
View file @
8a5a54c
...
...
@@ -265,14 +265,12 @@ if : IF
fi : FI
{
/* False branch of an if-block */
$$.cond = mh_code_number (0);
mh_code_op (mhop_num_asgn);
$$.cond = mh_code_op (mhop_num_asgn);
/* Jump over the true branch */
mh_code_op (mhop_branch);
mh_code_op (
3
);
mh_code_op (
2
);
/* True branch */
$$.end = mh_code_number (1);
mh_code_op (mhop_num_asgn);
$$.end = mh_code_op (mhop_num_asgn);
}
;
...
...
Please
register
or
sign in
to post a comment