diff options
| author | Eli Zaretskii | 2006-11-20 20:57:06 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-11-20 20:57:06 +0000 |
| commit | 1ce0a32d363fa529e90b24eb4e83ca7ea871d27d (patch) | |
| tree | 0a380a9a3628cbccce516a10d2cdc44f8879d204 /src | |
| parent | 03e3eb4d58a754ea5240e16c56cb48518b8ca64e (diff) | |
| download | emacs-1ce0a32d363fa529e90b24eb4e83ca7ea871d27d.tar.gz emacs-1ce0a32d363fa529e90b24eb4e83ca7ea871d27d.zip | |
(concat) [!__GNUC__]: Add prototype.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fns.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 828bebf4fc3..7edc5caab76 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-11-20 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * fns.c (concat) [!__GNUC__]: Add prototype. | ||
| 4 | |||
| 1 | 2006-11-20 Kenichi Handa <handa@m17n.org> | 5 | 2006-11-20 Kenichi Handa <handa@m17n.org> |
| 2 | 6 | ||
| 3 | * fileio.c (Fread_file_name_internal): Use SBYTES (not SCHARS) to | 7 | * fileio.c (Fread_file_name_internal): Use SBYTES (not SCHARS) to |
| @@ -392,6 +392,8 @@ Symbols are also allowed; their print names are used instead. */) | |||
| 392 | the arguments for the invocations of this function, whereas it | 392 | the arguments for the invocations of this function, whereas it |
| 393 | expects these values on the stack. */ | 393 | expects these values on the stack. */ |
| 394 | static Lisp_Object concat () __attribute__((noinline)); | 394 | static Lisp_Object concat () __attribute__((noinline)); |
| 395 | #else /* !__GNUC__ */ | ||
| 396 | static Lisp_Object concat (); | ||
| 395 | #endif | 397 | #endif |
| 396 | 398 | ||
| 397 | /* ARGSUSED */ | 399 | /* ARGSUSED */ |