diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 4 | ||||
| -rw-r--r-- | lib-src/etags.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index f8650c8cc70..d726ec108a2 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-02-27 Yuri Shtil <yuris@juniper.net> (tiny change) | ||
| 2 | |||
| 3 | * etags.c (Perl_functions): Fix call to skip_spaces. | ||
| 4 | |||
| 1 | 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu> | 5 | 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 6 | ||
| 3 | * Makefile.in (NO_SHORTNAMES): | 7 | * Makefile.in (NO_SHORTNAMES): |
diff --git a/lib-src/etags.c b/lib-src/etags.c index d71f849d2c1..2fe0c6314fd 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -4552,7 +4552,7 @@ Perl_functions (inf) | |||
| 4552 | 4552 | ||
| 4553 | LOOP_ON_INPUT_LINES (inf, lb, cp) | 4553 | LOOP_ON_INPUT_LINES (inf, lb, cp) |
| 4554 | { | 4554 | { |
| 4555 | skip_spaces(cp); | 4555 | cp = skip_spaces (cp); |
| 4556 | 4556 | ||
| 4557 | if (LOOKING_AT (cp, "package")) | 4557 | if (LOOKING_AT (cp, "package")) |
| 4558 | { | 4558 | { |