changeset 2189:6b33ce6bc740

Add an explicit p alias for the print command now that printf prevents use of it as an implicit alias
author Michael Pavone <pavone@retrodev.com>
date Sat, 20 Aug 2022 11:41:41 -0700
parents e17d99c96c89
children 59e0dcc01b2c
files debug.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/debug.c	Sat Aug 20 11:40:41 2022 -0700
+++ b/debug.c	Sat Aug 20 11:41:41 2022 -0700
@@ -1918,7 +1918,7 @@
 	},
 	{
 		.names = (const char *[]){
-			"print", NULL
+			"print", "p", NULL
 		},
 		.usage = "print[/FORMAT] EXPRESSION...",
 		.desc = "Print one or more expressions using the optional format character",