Changeset 74037d9 for owl.c


Ignore:
Timestamp:
Dec 30, 2004, 10:04:55 PM (19 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
1ef65fb
Parents:
8298425
Message:
In 'sub' command, create .zephyr.subs if it doesn't exist [BZ 15]
A fix for certain resize crashes (part from alexmv) [BZ 55]
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.c

    r7fad773 r74037d9  
    488488#endif
    489489      } else if (owl_global_messagequeue_pending(&g)) {
     490        /* pick up the non-zephyr message in the message queue */
    490491        m=owl_global_messageuque_popmsg(&g);
     492      } else {
     493        /* Not supposed to happen, but we seem to get here on resizes */
     494        owl_function_debugmsg("Bottomed out looking for zephyr");
     495      }
     496
     497      /* If we didn't pick up a message for some reason, don't go on */
     498      if (m==NULL) {
     499        owl_function_debugmsg("m is null in main loop");
     500        continue;
    491501      }
    492502     
Note: See TracChangeset for help on using the changeset viewer.