diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 8 | ||||
| -rw-r--r-- | lib-src/etags.c | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index d98a441f8d8..089d979381b 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-01-22 Chong Yidong <cyd@stupidchicken.com> | 5 | 2008-01-22 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * pop.c (pop_stat, pop_last): Fix last fix. | 7 | * pop.c (pop_stat, pop_last): Fix last fix. |
| @@ -19,8 +23,8 @@ | |||
| 19 | 23 | ||
| 20 | * etags.c (default_C_help) [CTAGS]: differentiate the help string, | 24 | * etags.c (default_C_help) [CTAGS]: differentiate the help string, |
| 21 | as the defaults in ctags are different from etags. | 25 | as the defaults in ctags are different from etags. |
| 22 | (default_C_help, Cplusplus_help, PHP_help, print_help): Remove | 26 | (default_C_help, Cplusplus_help, PHP_help, print_help): |
| 23 | text saying --members is the default: not true in Emacs 22. | 27 | Remove text saying --members is the default: not true in Emacs 22. |
| 24 | 28 | ||
| 25 | 2007-11-15 Francesco Potort,Al(B <pot@gnu.org> | 29 | 2007-11-15 Francesco Potort,Al(B <pot@gnu.org> |
| 26 | 30 | ||
diff --git a/lib-src/etags.c b/lib-src/etags.c index 52bcb8ad11d..951d408ec3c 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -4516,7 +4516,7 @@ Perl_functions (inf) | |||
| 4516 | 4516 | ||
| 4517 | LOOP_ON_INPUT_LINES (inf, lb, cp) | 4517 | LOOP_ON_INPUT_LINES (inf, lb, cp) |
| 4518 | { | 4518 | { |
| 4519 | skip_spaces(cp); | 4519 | cp = skip_spaces (cp); |
| 4520 | 4520 | ||
| 4521 | if (LOOKING_AT (cp, "package")) | 4521 | if (LOOKING_AT (cp, "package")) |
| 4522 | { | 4522 | { |