diff options
| author | Eli Zaretskii | 2002-03-30 07:40:54 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-03-30 07:40:54 +0000 |
| commit | 74974a34cd4652e50017e2b0f230941fea43a6c6 (patch) | |
| tree | 06098b68410df46a66b8e5987702c346159d1b78 /lib-src | |
| parent | 2d88b5562cfc3e117f44a19310e9b3a727b9e531 (diff) | |
| download | emacs-74974a34cd4652e50017e2b0f230941fea43a6c6.tar.gz emacs-74974a34cd4652e50017e2b0f230941fea43a6c6.zip | |
(add_declarator): Fix the first call to add_member_defn.
Diffstat (limited to 'lib-src')
| -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) | |||
| 3251 | int pos = BUFFER_POS (); | 3251 | int pos = BUFFER_POS (); |
| 3252 | 3252 | ||
| 3253 | if (cls) | 3253 | if (cls) |
| 3254 | add_member_defn (cls, *id, regexp, pos, 0, 1, SC_UNKNOWN, flags); | 3254 | add_member_defn (*cls, *id, regexp, pos, 0, 1, SC_UNKNOWN, flags); |
| 3255 | else | 3255 | else |
| 3256 | add_global_defn (*id, regexp, pos, 0, 1, sc, flags); | 3256 | add_global_defn (*id, regexp, pos, 0, 1, sc, flags); |
| 3257 | } | 3257 | } |