From: Gerd Moellmann Date: Thu, 3 May 2001 11:57:57 +0000 (+0000) Subject: (globals): Fix handling of namespace aliases. X-Git-Tag: emacs-pretest-21.0.103~56 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=efbecf9d71e77a9dd1b2d1fb51828530cb293a59;p=emacs.git (globals): Fix handling of namespace aliases. --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 050436c7732..16381d3030a 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,7 @@ +2001-05-03 Gerd Moellmann + + * ebrowse.c (globals): Fix handling of namespace aliases. + 2001-04-27 Eli Zaretskii * etags.c (print_help): Enclose the regexp in the help text diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index cdd3ccba2c5..8177cb73cfb 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -3303,9 +3303,12 @@ globals (start_flags) if (LOOKING_AT ('=')) { + MATCH (); + if (LOOKING_AT (IDENT)) + register_namespace_alias (namespace_name, yytext); + if (skip_to (';') == ';') MATCH (); - register_namespace_alias (namespace_name, yytext); } else if (LOOKING_AT ('{')) {