Changeset 0e57335
- Timestamp:
- Mar 7, 2010, 10:26:06 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- a1074de
- Parents:
- 5e5f08f
- git-author:
- Anders Kaseorg <andersk@mit.edu> (02/27/10 20:24:41)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (03/07/10 22:26:06)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
r8c59178 r0e57335 1630 1630 } 1631 1631 g_string_append(str, "\n"); 1632 owl_variable_dict_namelist_ free(&varnames);1632 owl_variable_dict_namelist_cleanup(&varnames); 1633 1633 1634 1634 owl_function_popless_text(str->str); … … 1654 1654 } 1655 1655 } 1656 owl_variable_dict_namelist_ free(&varnames);1656 owl_variable_dict_namelist_cleanup(&varnames); 1657 1657 owl_function_popless_fmtext(&fm); 1658 1658 owl_fmtext_cleanup(&fm); -
help.c
r7ab0020 r0e57335 135 135 } 136 136 } 137 owl_variable_dict_namelist_ free(&varnames);137 owl_variable_dict_namelist_cleanup(&varnames); 138 138 139 139 owl_fmtext_append_normal(&fm, "\n"); -
variable.c
r8c59178 r0e57335 615 615 } 616 616 617 /* free the list with owl_variable_dict_namelist_ free*/617 /* free the list with owl_variable_dict_namelist_cleanup */ 618 618 void owl_variable_dict_get_names(const owl_vardict *d, owl_list *l) { 619 619 owl_dict_get_keys(d, l); 620 620 } 621 621 622 void owl_variable_dict_namelist_free(owl_list *l) { 622 void owl_variable_dict_namelist_cleanup(owl_list *l) 623 { 623 624 owl_list_cleanup(l, owl_free); 624 625 }
Note: See TracChangeset
for help on using the changeset viewer.