Changeset 8d4b521


Ignore:
Timestamp:
Mar 7, 2010, 10:26:20 PM (14 years ago)
Author:
Anders Kaseorg <andersk@mit.edu>
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)
Message:
Rename owl_cmddict_namelist_free to owl_cmddict_namelist_cleanup.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
Reviewed-by: Nelson Elhage <nelhage@mit.edu>
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cmd.c

    r685e96f r8d4b521  
    3333}
    3434
    35 /* free the list with owl_cmddict_namelist_free */
     35/* free the list with owl_cmddict_namelist_cleanup */
    3636void owl_cmddict_get_names(const owl_cmddict *d, owl_list *l) {
    3737  owl_dict_get_keys(d, l);
     
    4242}
    4343
    44 void owl_cmddict_namelist_free(owl_list *l) {
     44void owl_cmddict_namelist_cleanup(owl_list *l)
     45{
    4546  owl_list_cleanup(l, owl_free);
    4647}
  • functions.c

    r0e57335 r8d4b521  
    5656  owl_fmtext_append_normal(&fm, "\n");
    5757  owl_function_popless_fmtext(&fm);
    58   owl_cmddict_namelist_free(&l);
     58  owl_cmddict_namelist_cleanup(&l);
    5959  owl_fmtext_cleanup(&fm);
    6060}
  • keymap.c

    r8c59178 r8d4b521  
    167167}
    168168
    169 /* free the list with owl_cmddict_namelist_free */
     169/* free the list with owl_cmddict_namelist_cleanup */
    170170void owl_keyhandler_get_keymap_names(const owl_keyhandler *kh, owl_list *l)
    171171{
Note: See TracChangeset for help on using the changeset viewer.