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
af1cf7bb
...
af1cf7bba3e6244bd3ecb5576b1832a8350dfccb
authored
2003-01-15 17:26:41 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added missing NLS markers.
1 parent
694ed249
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
mail/msgset.y
mail/msgset.y
View file @
af1cf7b
...
...
@@ -243,17 +243,17 @@ yyerror (const char *s)
fprintf (stderr, "%s: ", xargv[0]);
fprintf (stderr, "%s", s);
if (!cur_p)
fprintf (stderr,
" near end"
);
fprintf (stderr,
_(" near end")
);
else if (*cur_p == 0)
{
int i = (*cur_p == 0) ? cur_ind + 1 : cur_ind;
if (i == xargc)
fprintf (stderr,
" near end"
);
fprintf (stderr,
_(" near end")
);
else
fprintf (stderr,
" near %s"
, xargv[i]);
fprintf (stderr,
_(" near %s")
, xargv[i]);
}
else
fprintf (stderr,
" near %s"
, cur_p);
fprintf (stderr,
_(" near %s")
, cur_p);
fprintf (stderr, "\n");
return 0;
}
...
...
Please
register
or
sign in
to post a comment