diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index 1f8d4099324..c05c8d8f8de 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -857,6 +857,7 @@ usage: (let* VARLIST BODY...) */) | |||
| 857 | lexenv = Vinternal_interpreter_environment; | 857 | lexenv = Vinternal_interpreter_environment; |
| 858 | 858 | ||
| 859 | varlist = XCAR (args); | 859 | varlist = XCAR (args); |
| 860 | CHECK_LIST (varlist); | ||
| 860 | while (CONSP (varlist)) | 861 | while (CONSP (varlist)) |
| 861 | { | 862 | { |
| 862 | QUIT; | 863 | QUIT; |
| @@ -917,6 +918,7 @@ usage: (let VARLIST BODY...) */) | |||
| 917 | USE_SAFE_ALLOCA; | 918 | USE_SAFE_ALLOCA; |
| 918 | 919 | ||
| 919 | varlist = XCAR (args); | 920 | varlist = XCAR (args); |
| 921 | CHECK_LIST (varlist); | ||
| 920 | 922 | ||
| 921 | /* Make space to hold the values to give the bound variables. */ | 923 | /* Make space to hold the values to give the bound variables. */ |
| 922 | elt = Flength (varlist); | 924 | elt = Flength (varlist); |