Replaced call to gh_append2 ()' with
gh_append ()'.
1998-06-12 Martin Baulig <baulig@taurus.uni-trier.de> * sysdeps/guile/proclist.c: Replaced call to `gh_append2 ()' with `gh_append ()'.
This commit is contained in:
committed by
Martin Baulig
parent
0d744987ff
commit
d9874dca81
@@ -33,10 +33,11 @@ glibtop_guile_names_proc_segment (void)
|
||||
list = gh_list (SCM_UNDEFINED);
|
||||
|
||||
for (i = 0; i < GLIBTOP_MAX_PROC_SEGMENT; i++)
|
||||
list = gh_append2
|
||||
list = gh_append
|
||||
(list, gh_list
|
||||
(gh_str02scm (glibtop_names_proc_segment [i]),
|
||||
SCM_UNDEFINED));
|
||||
SCM_UNDEFINED),
|
||||
SCM_UNDEFINED);
|
||||
|
||||
return list;
|
||||
}
|
||||
@@ -50,10 +51,11 @@ glibtop_guile_types_proc_segment (void)
|
||||
list = gh_list (SCM_UNDEFINED);
|
||||
|
||||
for (i = 0; i < GLIBTOP_MAX_PROC_SEGMENT; i++)
|
||||
list = gh_append2
|
||||
list = gh_append
|
||||
(list, gh_list
|
||||
(gh_str02scm (glibtop_types_proc_segment [i]),
|
||||
SCM_UNDEFINED));
|
||||
SCM_UNDEFINED),
|
||||
SCM_UNDEFINED);
|
||||
|
||||
return list;
|
||||
}
|
||||
@@ -67,11 +69,12 @@ glibtop_guile_labels_proc_segment (void)
|
||||
list = gh_list (SCM_UNDEFINED);
|
||||
|
||||
for (i = 0; i < GLIBTOP_MAX_PROC_SEGMENT; i++)
|
||||
list = gh_append2
|
||||
list = gh_append
|
||||
(list, gh_list
|
||||
(gh_str02scm (gettext
|
||||
(glibtop_labels_proc_segment [i])),
|
||||
SCM_UNDEFINED));
|
||||
SCM_UNDEFINED),
|
||||
SCM_UNDEFINED);
|
||||
|
||||
return list;
|
||||
}
|
||||
@@ -85,11 +88,12 @@ glibtop_guile_descriptions_proc_segment (void)
|
||||
list = gh_list (SCM_UNDEFINED);
|
||||
|
||||
for (i = 0; i < GLIBTOP_MAX_PROC_SEGMENT; i++)
|
||||
list = gh_append2
|
||||
list = gh_append
|
||||
(list, gh_list
|
||||
(gh_str02scm (gettext
|
||||
(glibtop_descriptions_proc_segment [i])),
|
||||
SCM_UNDEFINED));
|
||||
SCM_UNDEFINED),
|
||||
SCM_UNDEFINED);
|
||||
|
||||
return list;
|
||||
}
|
||||
|
Reference in New Issue
Block a user