diff options
author | Eli Zaretskii <eliz@gnu.org> | 2010-07-03 18:15:30 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2010-07-03 18:15:30 +0300 |
commit | 1c027a2427524def8a03ee4ad3e48fefa352a9b0 (patch) | |
tree | 364dc9b24d54e8cef65024f2ae656f419db4ab95 /lib-src | |
parent | f4e8a59cc198809f258d46c4af161dbf452c56c3 (diff) | |
download | emacs-1c027a2427524def8a03ee4ad3e48fefa352a9b0.tar.gz |
ebrowse.c (check_namespace): Fix indentation.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/ebrowse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 37b48a3349a..6f846637abd 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -1062,10 +1062,10 @@ check_namespace (char *name, struct sym *context) { if (streq (p->name, name) && (p->namesp == context)) break; - } + } return p; - } +} /* Find the symbol for namespace NAME. If not found, add a new symbol for NAME to all_namespaces. */ |