diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:27 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:27 -0800 |
commit | c7d035ae1a729232579a0fe41ed5affa131d3623 (patch) | |
tree | fb387f7c2a8e01cf603d4c75fbbaa68f711df986 /edline.c | |
parent | deda2c0fd8689349fea2a900199a76ff7ecb319e (diff) | |
download | scm-c7d035ae1a729232579a0fe41ed5affa131d3623.tar.gz scm-c7d035ae1a729232579a0fe41ed5affa131d3623.zip |
Import Upstream version 5d9upstream/5d9
Diffstat (limited to 'edline.c')
-rw-r--r-- | edline.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -54,7 +54,7 @@ SCM lreadline(prompt) { SCM res; char *s; - ASSERT(NIMP(prompt) && STRINGP(prompt), prompt, ARG1, s_readline); + ASRTER(NIMP(prompt) && STRINGP(prompt), prompt, ARG1, s_readline); s = readline(CHARS(prompt)); if (NULL == s) return EOF_VAL; NEWCELL(res); @@ -68,7 +68,7 @@ static char s_add_history[] = "add-history"; SCM ladd_history(line) SCM line; { - ASSERT(NIMP(line) && STRINGP(line), line, ARG1, s_add_history); + ASRTER(NIMP(line) && STRINGP(line), line, ARG1, s_add_history); add_history(CHARS(line)); return UNSPECIFIED; } |