1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(globals): Fix handling of namespace aliases.

This commit is contained in:
Gerd Moellmann 2001-05-03 11:57:57 +00:00
parent 7198b45925
commit efbecf9d71
2 changed files with 8 additions and 1 deletions

View file

@ -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 ('{'))
{