aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/openocd.texi1
-rw-r--r--src/helper/command.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/doc/openocd.texi b/doc/openocd.texi
index 7f486a9..daf0a6a 100644
--- a/doc/openocd.texi
+++ b/doc/openocd.texi
@@ -8153,7 +8153,6 @@ file (which is normally the server's standard output).
@deffn {Command} {echo} [-n] message
Logs a message at "user" priority.
-Output @var{message} to stdout.
Option "-n" suppresses trailing newline.
@example
echo "Downloading kernel -- please wait"
diff --git a/src/helper/command.c b/src/helper/command.c
index 4be3abd..8ea805b 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -1222,7 +1222,6 @@ static const struct command_registration command_builtin_handlers[] = {
.handler = jim_echo,
.mode = COMMAND_ANY,
.help = "Logs a message at \"user\" priority. "
- "Output message to stdout. "
"Option \"-n\" suppresses trailing newline",
.usage = "[-n] string",
},