--- freem/src/xecline.c 2025/03/09 19:50:47 1.5 +++ freem/src/xecline.c 2025/03/22 21:44:32 1.6 @@ -1,5 +1,5 @@ /* - * $Id: xecline.c,v 1.5 2025/03/09 19:50:47 snw Exp $ + * $Id: xecline.c,v 1.6 2025/03/22 21:44:32 snw Exp $ * freem interpreter proper * * @@ -24,6 +24,9 @@ * along with FreeM. If not, see . * * $Log: xecline.c,v $ + * Revision 1.6 2025/03/22 21:44:32 snw + * Make the startup messages fewer and add environment name to direct-mode prompt + * * Revision 1.5 2025/03/09 19:50:47 snw * Second phase of REUSE compliance and header reformat * @@ -7205,10 +7208,10 @@ direct_mode: if (quiet_mode == FALSE) { if (tp_level == 0) { - snprintf (fmrl_prompt, 255, "\r\n%s> ", nsname); + snprintf (fmrl_prompt, 255, "\r\n%s.%s> ", shm_env, nsname); } else { - snprintf (fmrl_prompt, 255, "\r\nTL%d:%s> ", tp_level, nsname); + snprintf (fmrl_prompt, 255, "\r\nTL%d:%s.%s> ", tp_level, shm_env, nsname); } } set_io (UNIX);