diff options
| author | Simon Glass <[email protected]> | 2023-06-17 11:49:48 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-06-23 14:38:16 -0400 |
| commit | a7536e95e2f2a07be369628f7e9b517b20210e4b (patch) | |
| tree | 831334b2fd440fc12e4836c5dbb147eba785b7d0 /common | |
| parent | b2101df305212dd3b98486cbec1d1f15da0832de (diff) | |
menu: Re-enable the ANSI codes
The intent here was to allow ANSI codes to be disabled, since it was
proving impoosible to test operation of the menu code when it kept moving
the cursor. Unfortunately this ended up in the patch.
Correct this by enabling ANSI again.
Signed-off-by: Simon Glass <[email protected]>
Reported-by: Pali Rohár <[email protected]>
Reported-by: Mark Kettenis <[email protected]>
Reported-by: Frank Wunderlich <[email protected]>
Fixes: 32bab0eae51b ("menu: Make use of CLI character processing")
Tested-by: Mark Kettenis <[email protected]>
Reviewed-by: Mark Kettenis <[email protected]>
Diffstat (limited to 'common')
| -rw-r--r-- | common/menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/menu.c b/common/menu.c index 94514177e4e..b55cf7b9996 100644 --- a/common/menu.c +++ b/common/menu.c @@ -15,7 +15,7 @@ #include "menu.h" -#define ansi 0 +#define ansi 1 /* * Internally, each item in a menu is represented by a struct menu_item. |
