Changeset 3b17b57 for functions.c
- Timestamp:
- Jul 31, 2011, 1:53:37 AM (13 years ago)
- Branches:
- master, release-1.10, release-1.9
- Children:
- 6edc38b, 8a13ea3, 6646fdb, 6ddeb17
- Parents:
- 9078f69
- git-author:
- David Benjamin <davidben@mit.edu> (07/31/11 01:52:53)
- git-committer:
- David Benjamin <davidben@mit.edu> (07/31/11 01:53:37)
- 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.