diff options
author | Mark Galassi <mark+savannah@galassi.org> | 1999-10-26 19:38:05 +0000 |
---|---|---|
committer | Mark Galassi <mark+savannah@galassi.org> | 1999-10-26 19:38:05 +0000 |
commit | 4921140c64afc560abeb2e4a86d10fdd3ea1cd2c (patch) | |
tree | ee21060527ac1909de06c81150313ca35bbdde25 /libguile/gh.h | |
parent | cd19d608b1af3e6ad86986cf1c154df2906c0515 (diff) | |
download | guile-4921140c64afc560abeb2e4a86d10fdd3ea1cd2c.tar.gz |
1999-10-26 Mark Galassi <rosalia@lanl.gov>
* gh.h, gh_data.c (gh_symbol2scm): changed gh_symbol2scm() to take
a const char * argument, upon suggestion from Lynn Winebarger.
Diffstat (limited to 'libguile/gh.h')
-rw-r--r-- | libguile/gh.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gh.h b/libguile/gh.h index 69fbad045..bf9d7d5b1 100644 --- a/libguile/gh.h +++ b/libguile/gh.h @@ -106,7 +106,7 @@ SCM gh_char2scm(char c); SCM gh_str2scm(char *s, int len); SCM gh_str02scm(char *s); void gh_set_substr(char *src, SCM dst, int start, int len); -SCM gh_symbol2scm(char *symbol_str); +SCM gh_symbol2scm(const char *symbol_str); SCM gh_ints2scm(int *d, int n); SCM gh_chars2byvect(char *d, int n); SCM gh_shorts2svect(short *d, int n); |