[print]PROG called directly from catalog prints R/S command as "RUN".
I think it is a mistake, it should look as "STOP".
I traced it to function prt_niladic in file prt.c:
#ifdef COMPILE_CATALOGUES
const char *p = niladics[idx].nname;
#else
const char *p = (idx == OP_RS && ! Running && ! XromRunning && State2.runmode) ? "RUN" : niladics[idx].nname;
#endif
I cannot imagine situation when I would want to see R/S opcode as "RUN", but somebody went to trouble of putting this special case together, so I am obviously missing something. What am I missing?