Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • global.c

    r27f6487 r40bda84  
    115115  g->timerlist = NULL;
    116116  g->interrupted = FALSE;
     117  g->got_sigtstp = FALSE;
    117118}
    118119
     
    482483  sepbar(NULL);
    483484  owl_editwin_redisplay(g->tw, 0);
    484   owl_function_full_redisplay(&g);
     485  owl_function_full_redisplay();
    485486
    486487  /* TODO: this should handle other forms of popwins */
     
    968969  g->interrupted = 0;
    969970}
     971
     972int owl_global_is_sigstp(const owl_global *g) {
     973  return g->got_sigtstp;
     974}
     975
     976void owl_global_set_got_sigstp(owl_global *g) {
     977  g->got_sigtstp = 1;
     978}
     979
     980void owl_global_unset_got_sigstp(owl_global *g) {
     981  g->got_sigtstp = 0;
     982}
Note: See TracChangeset for help on using the changeset viewer.