Rename new-notes/PR-587 file; fix code block in PR-644

This commit is contained in:
Andrew Johnson
2025-06-16 00:21:28 -05:00
parent 855696b4b1
commit 389f51e55c
2 changed files with 4 additions and 1 deletions

View File

@@ -17,7 +17,10 @@ The value of the `IOCSH_PS1` environment paremeter in those files can use the
appearance of the prompt. The C string literal concatenation syntax can be
used to construct the prompt string:
IOCSH_PS1 = ANSI_ESC_RED "e" ANSI_ESC_YELLOW "p" ANSI_ESC_GREEN "i" ANSI_ESC_CYAN "c" ANSI_BLUE("s") "> "
```Makefile
IOCSH_PS1 = ANSI_ESC_RED "e" ANSI_ESC_YELLOW "p" ANSI_ESC_GREEN "i" \
ANSI_ESC_CYAN "c" ANSI_BLUE("s") "> "
```
- More error messages printed by IOC Shell commands now appear in red, or use
the red `ERROR` prefix that was introduced in previous releases.