Prereq: patch.0 diff -c3 ../xmh.baseline/Patchlevel ./Patchlevel *** ../xmh.baseline/Patchlevel Fri Sep 20 14:21:03 1991 --- ./Patchlevel Fri Sep 6 00:50:27 1991 *************** *** 1 **** ! Xmh.sei.mods patch.0 --- 1 ---- ! Xmh.sei.mods patch.1 diff -c3 ../xmh.baseline/popup.c ./popup.c *** ../xmh.baseline/popup.c Fri Sep 20 14:21:09 1991 --- ./popup.c Thu Oct 24 21:54:31 1991 *************** *** 525,533 **** Widget transientFor; String question; /* the prompting string */ String deflt; /* the initial value */ ! XtCallbackProc okayCallback; /* CreateFolder() */ { ! Arg args[4]; Widget popup; Widget dialog; Widget value; --- 525,533 ---- Widget transientFor; String question; /* the prompting string */ String deflt; /* the initial value */ ! XtCallbackProc okayCallback; /* get file name */ { ! Arg args[3]; Widget popup; Widget dialog; Widget value; diff -c3 ../xmh.baseline/screen.c ./screen.c *** ../xmh.baseline/screen.c Fri Sep 20 14:21:10 1991 --- ./screen.c Thu Oct 24 21:54:31 1991 *************** *** 258,263 **** --- 258,265 ---- BBoxAddButton(scrn->miscbuttons, name, commandWidgetClass, True); } } + + } static void MakeView(scrn) diff -c3 ../xmh.baseline/tocutil.c ./tocutil.c *** ../xmh.baseline/tocutil.c Fri Sep 20 14:21:11 1991 --- ./tocutil.c Thu Oct 24 21:42:25 1991 *************** *** 757,762 **** --- 757,763 ---- Widget w; { XEvent ev; + XtAppContext appCtx; RetVal = -1; if(LastFile) *************** *** 763,771 **** (void) PopupPromptDefault(w,"Append to file:",LastFile, AppendFile); else (void)PopupPromptDefault(w,"Append to file:",(char *)0, AppendFile); ! for(;;) { ! XtNextEvent(&ev); (void) XtDispatchEvent(&ev); if (RetVal == 1) return LastFile; --- 764,772 ---- (void) PopupPromptDefault(w,"Append to file:",LastFile, AppendFile); else (void)PopupPromptDefault(w,"Append to file:",(char *)0, AppendFile); ! appCtx = XtWidgetToApplicationContext(toplevel); for(;;) { ! XtAppNextEvent(appCtx,&ev); (void) XtDispatchEvent(&ev); if (RetVal == 1) return LastFile;