mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-18 01:30:27 +02:00
* strings.c, strings.h: (scm_makfrom0str, scm_makefrom0str_opt:
declare the char * to be const. Avoids a warning in rgx.c. * ports.h: spelling fix. * filesys.c (scm_sys_stat, scm_sys,lstat): include file name in error messages. * load.c (scm_sys_try_load_path): throw an error if file not found (like it says it in NEWS).
This commit is contained in:
parent
5552355a7b
commit
dbece3a204
6 changed files with 37 additions and 14 deletions
|
@ -65,8 +65,8 @@ extern SCM scm_makstr (long len, int slots);
|
|||
extern SCM scm_makfromstrs (int argc, char **argv);
|
||||
extern SCM scm_take0str (char * it);
|
||||
extern SCM scm_makfromstr (const char *src, scm_sizet len, int slots);
|
||||
extern SCM scm_makfrom0str (char *src);
|
||||
extern SCM scm_makfrom0str_opt (char *src);
|
||||
extern SCM scm_makfrom0str (const char *src);
|
||||
extern SCM scm_makfrom0str_opt (const char *src);
|
||||
extern SCM scm_make_string (SCM k, SCM chr);
|
||||
extern SCM scm_string_length (SCM str);
|
||||
extern SCM scm_string_ref (SCM str, SCM k);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue