--- ray/src/hd/rholo4.c 1997/11/20 11:40:11 3.6 +++ ray/src/hd/rholo4.c 1997/11/26 21:34:28 3.9 @@ -108,6 +108,14 @@ int block; disp_result(DS_STARTIMM, 0, NULL); bundle_set(BS_ADD, (PACKHEAD *)buf, msg.nbytes/sizeof(PACKHEAD)); disp_result(DS_ENDIMM, 0, NULL); + disp_check(0); /* hack -- delete usu. follows add */ + break; + case DR_ADJSET: + if (msg.nbytes % sizeof(PACKHEAD)) + error(INTERNAL, "bad DR_ADJSET from display process"); + disp_result(DS_STARTIMM, 0, NULL); + bundle_set(BS_ADJ, (PACKHEAD *)buf, msg.nbytes/sizeof(PACKHEAD)); + disp_result(DS_ENDIMM, 0, NULL); disp_flush(); break; case DR_DELSET: @@ -125,6 +133,8 @@ int block; if (msg.nbytes) error(INTERNAL, "bad DR_SHUTDOWN from display process"); return(0); /* zero return signals shutdown */ + case DR_NOOP: + break; default: error(INTERNAL, "unrecognized request from display process"); }