1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

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
This commit is contained in:
Paul Eggert 2013-07-01 17:33:04 -07:00
parent aaea749595
commit 164b1ba3f3
4 changed files with 17 additions and 14 deletions

View file

@ -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)