From: Eli Zaretskii Date: Mon, 20 Nov 2006 20:57:06 +0000 (+0000) Subject: (concat) [!__GNUC__]: Add prototype. X-Git-Tag: emacs-pretest-22.0.92~584 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1ce0a32d363fa529e90b24eb4e83ca7ea871d27d;p=emacs.git (concat) [!__GNUC__]: Add prototype. --- diff --git a/src/ChangeLog b/src/ChangeLog index 828bebf4fc3..7edc5caab76 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-11-20 Eli Zaretskii + + * fns.c (concat) [!__GNUC__]: Add prototype. + 2006-11-20 Kenichi Handa * fileio.c (Fread_file_name_internal): Use SBYTES (not SCHARS) to diff --git a/src/fns.c b/src/fns.c index 507bf229e47..3aa8cf4f6b4 100644 --- a/src/fns.c +++ b/src/fns.c @@ -392,6 +392,8 @@ Symbols are also allowed; their print names are used instead. */) the arguments for the invocations of this function, whereas it expects these values on the stack. */ static Lisp_Object concat () __attribute__((noinline)); +#else /* !__GNUC__ */ +static Lisp_Object concat (); #endif /* ARGSUSED */