Changeset 6ddeb17 for functions.c
- Timestamp:
- Jul 31, 2011, 1:55:12 AM (12 years ago)
- Parents:
- 9078f69 (diff), 3b17b57 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
rb9517cf r3b17b57 204 204 205 205 /* do followlast if necessary */ 206 if (owl_global_should_followlast(&g)) owl_function_lastmsg _noredisplay();206 if (owl_global_should_followlast(&g)) owl_function_lastmsg(); 207 207 208 208 /* redisplay etc. */ … … 808 808 } 809 809 810 void owl_function_lastmsg _noredisplay(void)810 void owl_function_lastmsg(void) 811 811 { 812 812 int oldcurmsg, curmsg; … … 826 826 owl_global_set_curmsg(&g, curmsg+1); 827 827 } 828 /* owl_mainwin_redisplay(owl_global_get_mainwin(&g)); */828 owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 829 829 owl_global_set_direction_downwards(&g); 830 }831 832 void owl_function_lastmsg(void)833 {834 owl_function_lastmsg_noredisplay();835 owl_mainwin_redisplay(owl_global_get_mainwin(&g));836 830 } 837 831
Note: See TracChangeset
for help on using the changeset viewer.