Changeset 7ab0020 for functions.c
- Timestamp:
- Mar 7, 2010, 10:26:00 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 8c59178
- Parents:
- 0fef6eb
- git-author:
- Anders Kaseorg <andersk@mit.edu> (02/27/10 20:29:48)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (03/07/10 22:26:00)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
r43e8bb2 r7ab0020 57 57 owl_function_popless_fmtext(&fm); 58 58 owl_cmddict_namelist_free(&l); 59 owl_fmtext_ free(&fm);59 owl_fmtext_cleanup(&fm); 60 60 } 61 61 … … 75 75 owl_view_to_fmtext(v, &fm); 76 76 owl_function_popless_fmtext(&fm); 77 owl_fmtext_ free(&fm);77 owl_fmtext_cleanup(&fm); 78 78 } 79 79 … … 89 89 owl_function_popless_fmtext(&fm); 90 90 owl_list_free_all(&l, owl_free); 91 owl_fmtext_ free(&fm);91 owl_fmtext_cleanup(&fm); 92 92 } 93 93 … … 1325 1325 1326 1326 owl_function_popless_fmtext(&fm); 1327 owl_fmtext_ free(&fm);1327 owl_fmtext_cleanup(&fm); 1328 1328 fclose(file); 1329 1329 } … … 1482 1482 1483 1483 owl_function_popless_fmtext(&fm); 1484 owl_fmtext_ free(&fm);1485 owl_fmtext_ free(&attrfm);1484 owl_fmtext_cleanup(&fm); 1485 owl_fmtext_cleanup(&attrfm); 1486 1486 } 1487 1487 … … 1511 1511 1512 1512 owl_function_popless_fmtext(&fm); 1513 owl_fmtext_ free(&fm);1513 owl_fmtext_cleanup(&fm); 1514 1514 } 1515 1515 … … 1656 1656 owl_variable_dict_namelist_free(&varnames); 1657 1657 owl_function_popless_fmtext(&fm); 1658 owl_fmtext_ free(&fm);1658 owl_fmtext_cleanup(&fm); 1659 1659 } 1660 1660 … … 1666 1666 owl_variable_get_help(owl_global_get_vardict(&g), name, &fm); 1667 1667 owl_function_popless_fmtext(&fm); 1668 owl_fmtext_ free(&fm);1668 owl_fmtext_cleanup(&fm); 1669 1669 } 1670 1670 … … 1800 1800 1801 1801 owl_function_popless_fmtext(&fm); 1802 owl_fmtext_ free(&fm);1802 owl_fmtext_cleanup(&fm); 1803 1803 } 1804 1804 … … 1821 1821 1822 1822 owl_function_popless_fmtext(&fm); 1823 owl_fmtext_ free(&fm);1823 owl_fmtext_cleanup(&fm); 1824 1824 } 1825 1825 … … 1903 1903 1904 1904 owl_function_popless_fmtext(&fm); 1905 owl_fmtext_ free(&fm);1905 owl_fmtext_cleanup(&fm); 1906 1906 } 1907 1907 … … 2228 2228 } 2229 2229 owl_function_popless_fmtext(&fm); 2230 owl_fmtext_ free(&fm);2230 owl_fmtext_cleanup(&fm); 2231 2231 } 2232 2232 … … 2272 2272 } 2273 2273 owl_function_popless_fmtext(&fm); 2274 owl_fmtext_ free(&fm);2274 owl_fmtext_cleanup(&fm); 2275 2275 } 2276 2276 … … 2714 2714 2715 2715 owl_function_popless_fmtext(&fm); 2716 owl_fmtext_ free(&fm);2716 owl_fmtext_cleanup(&fm); 2717 2717 } 2718 2718 … … 2839 2839 owl_function_popless_fmtext(&fm); 2840 2840 owl_keyhandler_keymap_namelist_free(&l); 2841 owl_fmtext_ free(&fm);2841 owl_fmtext_cleanup(&fm); 2842 2842 } 2843 2843 … … 2864 2864 } 2865 2865 owl_function_popless_fmtext(&fm); 2866 owl_fmtext_ free(&fm);2866 owl_fmtext_cleanup(&fm); 2867 2867 } 2868 2868 … … 2874 2874 owl_cmd_get_help(owl_global_get_cmddict(&g), cmdname, &fm); 2875 2875 owl_function_popless_fmtext(&fm); 2876 owl_fmtext_ free(&fm);2876 owl_fmtext_cleanup(&fm); 2877 2877 } 2878 2878 … … 2981 2981 owl_fmtext_append_ztext(&fm, zt); 2982 2982 plaintext = owl_fmtext_print_plain(&fm); 2983 owl_fmtext_ free(&fm);2983 owl_fmtext_cleanup(&fm); 2984 2984 return(plaintext); 2985 2985 } … … 3100 3100 owl_function_popless_fmtext(&fm); 3101 3101 } 3102 owl_fmtext_ free(&fm);3102 owl_fmtext_cleanup(&fm); 3103 3103 } 3104 3104 … … 3481 3481 3482 3482 owl_function_popless_fmtext(&fm); 3483 owl_fmtext_ free(&fm);3483 owl_fmtext_cleanup(&fm); 3484 3484 } 3485 3485
Note: See TracChangeset
for help on using the changeset viewer.