Changeset 6ddeb17


Ignore:
Timestamp:
Jul 31, 2011, 1:55:12 AM (13 years ago)
Author:
GitHub Merge Button <merge-button@github.com>
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.
Message:
Merge 3b17b576fd1ea9cad1bfe24591b287425172db9a into 9078f69bca3842103a42b6ff02451b229988753a
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    rb9517cf r3b17b57  
    204204
    205205  /* 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();
    207207
    208208  /* redisplay etc. */
     
    808808}
    809809
    810 void owl_function_lastmsg_noredisplay(void)
     810void owl_function_lastmsg(void)
    811811{
    812812  int oldcurmsg, curmsg;
     
    826826    owl_global_set_curmsg(&g, curmsg+1);
    827827  }
    828   /* owl_mainwin_redisplay(owl_global_get_mainwin(&g)); */
     828  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
    829829  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)); 
    836830}
    837831
  • owl.c

    rf271129 r3b17b57  
    262262    /* follow the last message if we're supposed to */
    263263    if (followlast)
    264       owl_function_lastmsg_noredisplay();
     264      owl_function_lastmsg();
    265265
    266266    /* do the newmsgproc thing */
Note: See TracChangeset for help on using the changeset viewer.