mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-29 22:40:34 +02:00
style fix in read.c
* libguile/read.c (scm_read_sexp): No need to assign to tmp here.
This commit is contained in:
parent
3b08b1c24d
commit
89f886122a
1 changed files with 1 additions and 1 deletions
|
@ -408,7 +408,7 @@ scm_read_sexp (scm_t_wchar chr, SCM port)
|
||||||
/* See above note about scm_sym_dot. */
|
/* See above note about scm_sym_dot. */
|
||||||
if (c == '.' && scm_is_eq (scm_sym_dot, tmp))
|
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);
|
c = flush_ws (port, FUNC_NAME);
|
||||||
if (terminating_char != c)
|
if (terminating_char != c)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue