Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
efbecf9d
Commit
efbecf9d
authored
May 03, 2001
by
Gerd Moellmann
Browse files
(globals): Fix handling of namespace aliases.
parent
7198b459
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
lib-src/ChangeLog
lib-src/ChangeLog
+4
-0
lib-src/ebrowse.c
lib-src/ebrowse.c
+4
-1
No files found.
lib-src/ChangeLog
View file @
efbecf9d
2001-05-03 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (globals): Fix handling of namespace aliases.
2001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
* etags.c (print_help): Enclose the regexp in the help text
...
...
lib-src/ebrowse.c
View file @
efbecf9d
...
...
@@ -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
(
'{'
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment