Changeset 8d4b521
- Timestamp:
- Mar 7, 2010, 10:26:20 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- c230bc1
- Parents:
- 685e96f
- git-author:
- Anders Kaseorg <andersk@mit.edu> (02/27/10 22:34:25)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (03/07/10 22:26:20)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cmd.c
r685e96f r8d4b521 33 33 } 34 34 35 /* free the list with owl_cmddict_namelist_ free*/35 /* free the list with owl_cmddict_namelist_cleanup */ 36 36 void owl_cmddict_get_names(const owl_cmddict *d, owl_list *l) { 37 37 owl_dict_get_keys(d, l); … … 42 42 } 43 43 44 void owl_cmddict_namelist_free(owl_list *l) { 44 void owl_cmddict_namelist_cleanup(owl_list *l) 45 { 45 46 owl_list_cleanup(l, owl_free); 46 47 } -
functions.c
r0e57335 r8d4b521 56 56 owl_fmtext_append_normal(&fm, "\n"); 57 57 owl_function_popless_fmtext(&fm); 58 owl_cmddict_namelist_ free(&l);58 owl_cmddict_namelist_cleanup(&l); 59 59 owl_fmtext_cleanup(&fm); 60 60 } -
keymap.c
r8c59178 r8d4b521 167 167 } 168 168 169 /* free the list with owl_cmddict_namelist_ free*/169 /* free the list with owl_cmddict_namelist_cleanup */ 170 170 void owl_keyhandler_get_keymap_names(const owl_keyhandler *kh, owl_list *l) 171 171 {
Note: See TracChangeset
for help on using the changeset viewer.