diff options
author | Dave Love <fx@gnu.org> | 1999-06-23 09:23:38 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1999-06-23 09:23:38 +0000 |
commit | 35f4704f95a8a804a519a89c700c07a5b0710a54 (patch) | |
tree | 36d4bedc9a11e440bcf9ee2aa70ca6cefa0cf4b4 /lib-src | |
parent | 2e32d2647d65b3eaec12b7522469f5b4995ebd68 (diff) | |
download | emacs-35f4704f95a8a804a519a89c700c07a5b0710a54.tar.gz |
(erlang_attribute): Fix undefined variable usage (after Potorti).
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/etags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index a1059e334d1..31308bf23e8 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -4111,7 +4111,7 @@ erlang_attribute (s) if (strneq (s, "-define", 7) || strneq (s, "-record", 7)) { - pos = 7 + eat_white (s, pos); + pos = 7 + eat_white (s, 7); if (s[pos++] == '(') { pos += eat_white (s, pos); |