diff options
author | Ludovic Courtès <ludo@gnu.org> | 2011-05-08 16:25:01 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2011-05-08 17:24:24 +0200 |
commit | d7fcaec39247b014f3d6aa2ca96a5ff903bc6706 (patch) | |
tree | bcad68fefb06429b6d5c989f7a6f12697784a1c1 | |
parent | cb7523c26db24598fb5aa9138598e1b7a3e6370f (diff) | |
download | guile-d7fcaec39247b014f3d6aa2ca96a5ff903bc6706.tar.gz |
Make the definition of `scm_read_shebang' match its declaration.
* libguile/read.c (scm_read_shebang): Remove the `inline' keyword.
-rw-r--r-- | libguile/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/read.c b/libguile/read.c index b36c27c81..676ccf753 100644 --- a/libguile/read.c +++ b/libguile/read.c @@ -1135,7 +1135,7 @@ scm_read_scsh_block_comment (scm_t_wchar chr, SCM port) return SCM_UNSPECIFIED; } -static inline SCM +static SCM scm_read_shebang (scm_t_wchar chr, SCM port) { int c = 0; |