From: Eli Zaretskii Date: Sat, 30 Mar 2002 07:40:54 +0000 (+0000) Subject: (add_declarator): Fix the first call to add_member_defn. X-Git-Tag: ttn-vms-21-2-B4~15897 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=74974a34cd4652e50017e2b0f230941fea43a6c6;p=emacs.git (add_declarator): Fix the first call to add_member_defn. --- 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); }