diff options
author | Andy Wingo <wingo@pobox.com> | 2011-07-29 09:14:04 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-07-29 09:14:04 +0200 |
commit | 89f886122a37a051087fbfbbab5400a29a661b06 (patch) | |
tree | 8fbcf4af9e08cd796d9f6d3174fd888c942035d7 /libguile/read.c | |
parent | 3b08b1c24df6d89645e0d1633dac0c4a7b160e6b (diff) | |
download | guile-89f886122a37a051087fbfbbab5400a29a661b06.tar.gz |
style fix in read.c
* libguile/read.c (scm_read_sexp): No need to assign to tmp here.
Diffstat (limited to 'libguile/read.c')
-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 ee50fb4a3..6fee118b0 100644 --- a/libguile/read.c +++ b/libguile/read.c @@ -408,7 +408,7 @@ scm_read_sexp (scm_t_wchar chr, SCM port) /* See above note about scm_sym_dot. */ if (c == '.' && scm_is_eq (scm_sym_dot, tmp)) { - SCM_SETCDR (tl, tmp = scm_read_expression (port)); + SCM_SETCDR (tl, scm_read_expression (port)); c = flush_ws (port, FUNC_NAME); if (terminating_char != c) |