From: OpenOCD-Gerrit <ope...@us...> - 2021-06-18 22:16:31
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 42a0bf3c360c1eae418223f0ab535b4d7accae83 (commit) from cdb8b00122142c58d9a91e37fbef322f2c9e5d02 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 42a0bf3c360c1eae418223f0ab535b4d7accae83 Author: R. Diez <rdi...@ya...> Date: Sun May 23 12:18:36 2021 +0200 Doc fix: echo writes to the log, and not to stdout Fixes bug #202 Change-Id: I855a1b8570af71379891634f405b4cc726917cb2 Signed-off-by: R. Diez <rdi...@ya...> Reviewed-on: http://openocd.zylin.com/6272 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/doc/openocd.texi b/doc/openocd.texi index 7f486a9dd..daf0a6aa1 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 4be3abd74..8ea805bd9 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", }, ----------------------------------------------------------------------- Summary of changes: doc/openocd.texi | 1 - src/helper/command.c | 1 - 2 files changed, 2 deletions(-) hooks/post-receive -- Main OpenOCD repository |