diff options
| author | Miles Bader | 2008-03-01 01:28:31 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-03-01 01:28:31 +0000 |
| commit | 51fb064bc72968e739e8dea580e58796c1a87f4c (patch) | |
| tree | 80c29b96dbb547a7c8db57a6d57ae4c6d2bfc1ca /lib-src | |
| parent | 14e8de0c3f87a228c05902be66c5bcf953636611 (diff) | |
| parent | 613f60eeb171e5ad881f52d9e7c0ffce2e182fcb (diff) | |
| download | emacs-51fb064bc72968e739e8dea580e58796c1a87f4c.tar.gz emacs-51fb064bc72968e739e8dea580e58796c1a87f4c.zip | |
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1090
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 | { |