From e7319ff005e1a42eece75f3d888207313409946a Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Wed, 23 Feb 2022 18:21:35 -0800 Subject: [PATCH] Optimize the help display for MSGS command (fits on one line) --- exec/str_cmds.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/exec/str_cmds.js b/exec/str_cmds.js index 09dd477260..94e8ef83cc 100644 --- a/exec/str_cmds.js +++ b/exec/str_cmds.js @@ -843,8 +843,7 @@ function str_cmds(str) } } if(str=="HELP") { - writeln("MSGS"); - writeln("\tRedisplay instant messages (notifications and telegrams)."); + writeln("MSGS\tRedisplay instant messages (notifications and telegrams)."); } if(word == "MSGS") { var num = -1; -- GitLab