Changeset c79a047 for functions.c
- Timestamp:
- Sep 28, 2009, 1:14:23 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- de8945b
- Parents:
- 99068d3
- git-author:
- Anders Kaseorg <andersk@mit.edu> (09/27/09 19:29:43)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (09/28/09 13:14:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
r27964fe rc79a047 44 44 } 45 45 46 void owl_function_show_commands( )46 void owl_function_show_commands(void) 47 47 { 48 48 owl_list l; … … 78 78 } 79 79 80 void owl_function_show_styles( ) {80 void owl_function_show_styles(void) { 81 81 owl_list l; 82 82 owl_fmtext fm; … … 120 120 } 121 121 122 void owl_function_show_license( )122 void owl_function_show_license(void) 123 123 { 124 124 const char *text; … … 166 166 } 167 167 168 void owl_function_show_quickstart( )168 void owl_function_show_quickstart(void) 169 169 { 170 170 const char *message = … … 357 357 } 358 358 359 void owl_function_loopwrite_setup( )359 void owl_function_loopwrite_setup(void) 360 360 { 361 361 owl_editwin *e; … … 693 693 } 694 694 695 void owl_function_nextmsg( )695 void owl_function_nextmsg(void) 696 696 { 697 697 owl_function_nextmsg_full(NULL, 0, 1); 698 698 } 699 699 700 void owl_function_prevmsg( )700 void owl_function_prevmsg(void) 701 701 { 702 702 owl_function_prevmsg_full(NULL, 0, 1); 703 703 } 704 704 705 void owl_function_nextmsg_notdeleted( )705 void owl_function_nextmsg_notdeleted(void) 706 706 { 707 707 owl_function_nextmsg_full(NULL, 1, 1); 708 708 } 709 709 710 void owl_function_prevmsg_notdeleted( )710 void owl_function_prevmsg_notdeleted(void) 711 711 { 712 712 owl_function_prevmsg_full(NULL, 1, 1); … … 772 772 } 773 773 774 void owl_function_expunge( )774 void owl_function_expunge(void) 775 775 { 776 776 int curmsg; … … 808 808 } 809 809 810 void owl_function_firstmsg( )810 void owl_function_firstmsg(void) 811 811 { 812 812 owl_global_set_curmsg(&g, 0); … … 816 816 } 817 817 818 void owl_function_lastmsg_noredisplay( )818 void owl_function_lastmsg_noredisplay(void) 819 819 { 820 820 int oldcurmsg, curmsg; … … 838 838 } 839 839 840 void owl_function_lastmsg( )840 void owl_function_lastmsg(void) 841 841 { 842 842 owl_function_lastmsg_noredisplay(); … … 844 844 } 845 845 846 void owl_function_shift_right( )846 void owl_function_shift_right(void) 847 847 { 848 848 owl_global_set_rightshift(&g, owl_global_get_rightshift(&g)+10); … … 851 851 } 852 852 853 void owl_function_shift_left( )853 void owl_function_shift_left(void) 854 854 { 855 855 int shift; … … 866 866 } 867 867 868 void owl_function_unsuball( )868 void owl_function_unsuball(void) 869 869 { 870 870 unsuball(); … … 946 946 } 947 947 948 void owl_function_suspend( )948 void owl_function_suspend(void) 949 949 { 950 950 endwin(); … … 956 956 } 957 957 958 void owl_function_zaway_toggle( )958 void owl_function_zaway_toggle(void) 959 959 { 960 960 if (!owl_global_is_zaway(&g)) { … … 966 966 } 967 967 968 void owl_function_zaway_on( )968 void owl_function_zaway_on(void) 969 969 { 970 970 owl_global_set_zaway_on(&g); … … 972 972 } 973 973 974 void owl_function_zaway_off( )974 void owl_function_zaway_off(void) 975 975 { 976 976 owl_global_set_zaway_off(&g); … … 978 978 } 979 979 980 void owl_function_aaway_toggle( )980 void owl_function_aaway_toggle(void) 981 981 { 982 982 if (!owl_global_is_aaway(&g)) { … … 988 988 } 989 989 990 void owl_function_aaway_on( )990 void owl_function_aaway_on(void) 991 991 { 992 992 owl_global_set_aaway_on(&g); … … 995 995 } 996 996 997 void owl_function_aaway_off( )997 void owl_function_aaway_off(void) 998 998 { 999 999 owl_global_set_aaway_off(&g); … … 1002 1002 } 1003 1003 1004 void owl_function_quit( )1004 void owl_function_quit(void) 1005 1005 { 1006 1006 char *ret; … … 1227 1227 } 1228 1228 1229 void owl_function_resize( )1229 void owl_function_resize(void) 1230 1230 { 1231 1231 owl_global_set_resize_pending(&g); 1232 1232 } 1233 1233 1234 void owl_function_run_buffercommand( )1234 void owl_function_run_buffercommand(void) 1235 1235 { 1236 1236 owl_editwin_do_callback(owl_global_get_typwin(&g)); … … 1264 1264 } 1265 1265 1266 void owl_function_beep( )1266 void owl_function_beep(void) 1267 1267 { 1268 1268 if (owl_global_is_bell(&g)) { … … 1302 1302 } 1303 1303 1304 void owl_function_full_redisplay( )1304 void owl_function_full_redisplay(void) 1305 1305 { 1306 1306 redrawwin(owl_global_get_curs_recwin(&g)); … … 1384 1384 } 1385 1385 1386 void owl_function_about( )1386 void owl_function_about(void) 1387 1387 { 1388 1388 owl_function_popless_text( … … 1410 1410 } 1411 1411 1412 void owl_function_info( )1412 void owl_function_info(void) 1413 1413 { 1414 1414 const owl_message *m; … … 1545 1545 * style the user may be using 1546 1546 */ 1547 void owl_function_curmsg_to_popwin( )1547 void owl_function_curmsg_to_popwin(void) 1548 1548 { 1549 1549 const owl_view *v; … … 1628 1628 } 1629 1629 1630 void owl_function_mainwin_pagedown( )1630 void owl_function_mainwin_pagedown(void) 1631 1631 { 1632 1632 int i; … … 1643 1643 } 1644 1644 1645 void owl_function_mainwin_pageup( )1645 void owl_function_mainwin_pageup(void) 1646 1646 { 1647 1647 owl_global_set_curmsg(&g, owl_global_get_topmsg(&g)); … … 1649 1649 } 1650 1650 1651 void owl_function_getsubs( )1651 void owl_function_getsubs(void) 1652 1652 { 1653 1653 char *buff; … … 1664 1664 } 1665 1665 1666 void owl_function_printallvars( )1666 void owl_function_printallvars(void) 1667 1667 { 1668 1668 const char *name; … … 1691 1691 } 1692 1692 1693 void owl_function_show_variables( )1693 void owl_function_show_variables(void) 1694 1694 { 1695 1695 owl_list varnames; … … 1745 1745 } 1746 1746 1747 void owl_function_delete_automsgs( )1747 void owl_function_delete_automsgs(void) 1748 1748 { 1749 1749 /* mark for deletion all messages in the current view that match the … … 1778 1778 } 1779 1779 1780 void owl_function_status( )1780 void owl_function_status(void) 1781 1781 { 1782 1782 char buff[MAXPATHLEN+1]; … … 1858 1858 } 1859 1859 1860 void owl_function_show_term( )1860 void owl_function_show_term(void) 1861 1861 { 1862 1862 owl_fmtext fm; … … 2271 2271 } 2272 2272 2273 void owl_function_show_filters( )2273 void owl_function_show_filters(void) 2274 2274 { 2275 2275 const owl_list *l; … … 2316 2316 } 2317 2317 2318 void owl_function_show_zpunts( )2318 void owl_function_show_zpunts(void) 2319 2319 { 2320 2320 const owl_filter *f; … … 2749 2749 } 2750 2750 2751 void owl_function_show_colors( )2751 void owl_function_show_colors(void) 2752 2752 { 2753 2753 owl_fmtext fm; … … 2899 2899 } 2900 2900 2901 void owl_function_show_keymaps( )2901 void owl_function_show_keymaps(void) 2902 2902 { 2903 2903 owl_list l; … … 3379 3379 } 3380 3380 3381 void owl_function_toggleoneline( )3381 void owl_function_toggleoneline(void) 3382 3382 { 3383 3383 owl_view *v; … … 3438 3438 } 3439 3439 3440 void owl_function_showerrs( )3440 void owl_function_showerrs(void) 3441 3441 { 3442 3442 owl_fmtext fm; … … 3552 3552 } 3553 3553 3554 int owl_function_get_color_count( )3554 int owl_function_get_color_count(void) 3555 3555 { 3556 3556 return COLORS; … … 3579 3579 } 3580 3580 3581 void owl_function_mark_message( )3581 void owl_function_mark_message(void) 3582 3582 { 3583 3583 const owl_message *m; … … 3598 3598 } 3599 3599 3600 void owl_function_swap_cur_marked( )3600 void owl_function_swap_cur_marked(void) 3601 3601 { 3602 3602 int marked_id;
Note: See TracChangeset
for help on using the changeset viewer.