Changeset 6c81223


Ignore:
Timestamp:
Nov 1, 2009, 5:39:15 PM (14 years ago)
Author:
Alejandro R. Sedeño <asedeno@mit.edu>
Branches:
master, release-1.10, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
8df704f
Parents:
96c3265
Message:
Fix _followlast behavior.

I broke _followlast in 26255f0a891e35ce73aef0db49ff403c3d69efeb.

This restores that functionality by checking to see if we should
followlast /before/ processing messages off of the message queue.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.c

    r18fdd5f9 r6c81223  
    282282{
    283283  int newmsgs=0;
     284  int followlast = owl_global_should_followlast(&g);
    284285  owl_message *m;
    285286
     
    293294  if (newmsgs) {
    294295    /* follow the last message if we're supposed to */
    295     if (owl_global_should_followlast(&g))
     296    if (followlast)
    296297      owl_function_lastmsg_noredisplay();
    297298
Note: See TracChangeset for help on using the changeset viewer.