Changeset 0e57335


Ignore:
Timestamp:
Mar 7, 2010, 10:26:06 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:
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)
Message:
Rename owl_variable_dict_namelist_free to owl_variable_dict_namelist_cleanup.

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

Legend:

Unmodified
Added
Removed
  • functions.c

    r8c59178 r0e57335  
    16301630  }
    16311631  g_string_append(str, "\n");
    1632   owl_variable_dict_namelist_free(&varnames);
     1632  owl_variable_dict_namelist_cleanup(&varnames);
    16331633
    16341634  owl_function_popless_text(str->str);
     
    16541654    }
    16551655  }
    1656   owl_variable_dict_namelist_free(&varnames);
     1656  owl_variable_dict_namelist_cleanup(&varnames);
    16571657  owl_function_popless_fmtext(&fm);
    16581658  owl_fmtext_cleanup(&fm);
  • help.c

    r7ab0020 r0e57335  
    135135    }
    136136  }
    137   owl_variable_dict_namelist_free(&varnames);
     137  owl_variable_dict_namelist_cleanup(&varnames);
    138138
    139139  owl_fmtext_append_normal(&fm, "\n");
  • variable.c

    r8c59178 r0e57335  
    615615}
    616616
    617 /* free the list with owl_variable_dict_namelist_free */
     617/* free the list with owl_variable_dict_namelist_cleanup */
    618618void owl_variable_dict_get_names(const owl_vardict *d, owl_list *l) {
    619619  owl_dict_get_keys(d, l);
    620620}
    621621
    622 void owl_variable_dict_namelist_free(owl_list *l) {
     622void owl_variable_dict_namelist_cleanup(owl_list *l)
     623{
    623624  owl_list_cleanup(l, owl_free);
    624625}
Note: See TracChangeset for help on using the changeset viewer.