aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lib-src/ebrowse.c5
2 files changed, 8 insertions, 1 deletions
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 @@
12001-05-03 Gerd Moellmann <gerd@gnu.org>
2
3 * ebrowse.c (globals): Fix handling of namespace aliases.
4
12001-04-27 Eli Zaretskii <eliz@is.elta.co.il> 52001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
2 6
3 * etags.c (print_help): Enclose the regexp in the help text 7 * 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)
3303 3303
3304 if (LOOKING_AT ('=')) 3304 if (LOOKING_AT ('='))
3305 { 3305 {
3306 MATCH ();
3307 if (LOOKING_AT (IDENT))
3308 register_namespace_alias (namespace_name, yytext);
3309
3306 if (skip_to (';') == ';') 3310 if (skip_to (';') == ';')
3307 MATCH (); 3311 MATCH ();
3308 register_namespace_alias (namespace_name, yytext);
3309 } 3312 }
3310 else if (LOOKING_AT ('{')) 3313 else if (LOOKING_AT ('{'))
3311 { 3314 {