ANU News Patch Patch ID: 930322_newsprofile.c!bailey@genetics.upenn.edu Date: 22-Mar-1993 Author: Charles Bailey bailey@genetics.upenn.edu News Version: 6.1beta6 News Files: NewsProfile.C Description: Changes display of editor setting in profile so that if the editor is callable, the display says "Call mumble" instead of "Spawn mumble" *** newsprofile.c --- newsprofile_new.c ************** *** 21,23 ** **-- **/ --- 21,25 ----- + ** V6.1b6 22-Mar-1993 bailey@genetics.upenn.edu + ** - corrected Call/Spawn display of of editor ** **-- **/ ************** *** 570,577 } else if (!strcmp(Editor,"edt")) strcat(err_oline,"Call EDT"); else { ! strcat(err_oline,"Spawn "); ! strcat(err_oline,Editor); } put_line(err_oline,0,T_DISPLAY_LOOP); --- 572,585 ----- } else if (!strcmp(Editor,"edt")) strcat(err_oline,"Call EDT"); else { ! if (!strncmp(Editor,"callable_",9)) { ! strcat(err_oline,"Call "); ! strcat(err_oline,Editor+9); ! } ! else { ! strcat(err_oline,"Spawn "); ! strcat(err_oline,Editor); ! } } put_line(err_oline,0,T_DISPLAY_LOOP); *** patchlist.h;-1 --- patchlist.h ************** *** 1,1 =+=+= End =+=+= --- 1,2 ----- + 930322_newsprofile.c!bailey@genetics.upenn.edu =+=+= End =+=+=