diff options
author | Eli Zaretskii <eliz@gnu.org> | 2002-03-30 07:40:54 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2002-03-30 07:40:54 +0000 |
commit | 74974a34cd4652e50017e2b0f230941fea43a6c6 (patch) | |
tree | 06098b68410df46a66b8e5987702c346159d1b78 /lib-src/ebrowse.c | |
parent | 2d88b5562cfc3e117f44a19310e9b3a727b9e531 (diff) | |
download | emacs-74974a34cd4652e50017e2b0f230941fea43a6c6.tar.gz emacs-74974a34cd4652e50017e2b0f230941fea43a6c6.tar.bz2 emacs-74974a34cd4652e50017e2b0f230941fea43a6c6.zip |
(add_declarator): Fix the first call to add_member_defn.
Diffstat (limited to 'lib-src/ebrowse.c')
-rw-r--r-- | lib-src/ebrowse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 47ab0d1c9e3..81dbf73455a 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -3251,7 +3251,7 @@ add_declarator (cls, id, flags, sc) int pos = BUFFER_POS (); if (cls) - add_member_defn (cls, *id, regexp, pos, 0, 1, SC_UNKNOWN, flags); + add_member_defn (*cls, *id, regexp, pos, 0, 1, SC_UNKNOWN, flags); else add_global_defn (*id, regexp, pos, 0, 1, sc, flags); } |