mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 11:50:28 +02:00
remove obsolete comments
* libguile/eval.c (scm_nconc2last): * libguile/strports.c (scm_c_read_string): Remove some obsolete comments.
This commit is contained in:
parent
900a6f87ba
commit
b6b84131cd
2 changed files with 1 additions and 6 deletions
|
@ -543,11 +543,7 @@ SCM_DEFINE (scm_nconc2last, "apply:nconc2last", 1, 0, 0,
|
|||
SCM *lloc;
|
||||
SCM_VALIDATE_NONEMPTYLIST (1, lst);
|
||||
lloc = &lst;
|
||||
while (!scm_is_null (SCM_CDR (*lloc))) /* Perhaps should be
|
||||
SCM_NULL_OR_NIL_P, but not
|
||||
needed in 99.99% of cases,
|
||||
and it could seriously hurt
|
||||
performance. - Neil */
|
||||
while (!scm_is_null (SCM_CDR (*lloc)))
|
||||
lloc = SCM_CDRLOC (*lloc);
|
||||
SCM_ASSERT (scm_ilength (SCM_CAR (*lloc)) >= 0, lst, SCM_ARG1, FUNC_NAME);
|
||||
*lloc = SCM_CAR (*lloc);
|
||||
|
|
|
@ -475,7 +475,6 @@ scm_c_read_string (const char *expr)
|
|||
"scm_c_read_string");
|
||||
SCM form;
|
||||
|
||||
/* Read expressions from that port; ignore the values. */
|
||||
form = scm_read (port);
|
||||
|
||||
scm_close_port (port);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue