summaryrefslogtreecommitdiff
path: root/lib-src/ebrowse.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2013-07-01 17:33:04 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2013-07-01 17:33:04 -0700
commit164b1ba3f311a3c333df8bcbd4ad65ad4ec864b5 (patch)
treef73b477d03f5c8ff86f96d6a27708c17bf7f8b68 /lib-src/ebrowse.c
parentaaea7495957f5b82fe4e1c8a90a8d96cd77c0001 (diff)
Prefer plain 'static' to 'static inline'.
I missed these instances of 'static inline' in an earlier sweep. * ebrowse.c (putstr): * etags.c (hash): * make-docfile.c (put_char): No longer inline. * etags.c (hash): Prefer int to unsigned when either will do. Fixes: debbugs:12541
Diffstat (limited to 'lib-src/ebrowse.c')
-rw-r--r--lib-src/ebrowse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c
index 2828591ed3..407f769afc 100644
--- a/lib-src/ebrowse.c
+++ b/lib-src/ebrowse.c
@@ -1096,7 +1096,7 @@ leave_namespace (void)
/* Write string S to the output file FP in a Lisp-readable form.
If S is null, write out `()'. */
-static inline void
+static void
putstr (const char *s, FILE *fp)
{
if (!s)