24495801a4
- fix lacheck again (#451513) - fix dvips configuration (#467542) - update kpathsea description and summary (#519257) - use upstream patch to fix pool overflow CVE-2009-1284 (#492136) - don't complain if the pdvipsk hunks touching config.ps don't apply - avoid clashes with getline() from glibc - texlive-east-asian now requires texlive-texmf-east-asian (#487258) - do not attempt to remove old fonts via cron in /var/lib/texmf, fonts are stored in ~/.texlive2007/texmf-var per-user (#477833, #463975, #453468) - use correct paths in brp-* post install scriptlets (#468179) - fix build with gcc4.4
45 lines
1.1 KiB
Diff
45 lines
1.1 KiB
Diff
diff -up texlive-2007/texk/lacheck/lacheck.lex.lacheck texlive-2007/texk/lacheck/lacheck.lex
|
|
--- texlive-2007/texk/lacheck/lacheck.lex.lacheck 2006-01-17 22:41:51.000000000 +0100
|
|
+++ texlive-2007/texk/lacheck/lacheck.lex 2008-08-27 13:20:52.000000000 +0200
|
|
@@ -1042,11 +1042,12 @@ char *name;
|
|
void g_checkend(n)
|
|
int n;
|
|
{
|
|
- if ( check_top_level_end(yytext,n) == 1 )
|
|
+ if ( check_top_level_end(yytext,n) == 1 ) {
|
|
if ( CG_TYPE != n )
|
|
print_bad_match(yytext,n);
|
|
else
|
|
pop();
|
|
+ }
|
|
}
|
|
|
|
void e_checkend(n, name)
|
|
@@ -1075,6 +1075,7 @@ char *name;
|
|
{
|
|
print_bad_match(name,3);
|
|
pop();
|
|
+ if (gstackp <= 0) return;
|
|
}
|
|
|
|
pop();
|
|
@@ -1090,11 +1091,13 @@ int type;
|
|
line_count,
|
|
eg_command( end_command , type) ) ;
|
|
|
|
- printf("\"%s\", line %d: -> unmatched \"%s\"\n",
|
|
- CG_FILE,
|
|
- CG_LINE,
|
|
- bg_command( CG_NAME ) ) ;
|
|
- warn_count += 2;
|
|
+ if (gstackp > 0) {
|
|
+ printf("\"%s\", line %d: -> unmatched \"%s\"\n",
|
|
+ CG_FILE,
|
|
+ CG_LINE,
|
|
+ bg_command( CG_NAME ) ) ;
|
|
+ warn_count += 2;
|
|
+ }
|
|
}
|
|
|
|
int check_top_level_end(end_command,type)
|