diff options
author | joerg <joerg@FreeBSD.org> | 1995-03-05 22:56:21 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1995-03-05 22:56:21 +0000 |
commit | a7aa212707097c87f56bf3d14b1f7a8bc0ab2ab5 (patch) | |
tree | 704e671c6bf5450ca32a84a9e92f7a069738230c /sys/ddb | |
parent | 874ecc50c1283069f2e8d00e318e980081b3a972 (diff) | |
download | FreeBSD-src-a7aa212707097c87f56bf3d14b1f7a8bc0ab2ab5.zip FreeBSD-src-a7aa212707097c87f56bf3d14b1f7a8bc0ab2ab5.tar.gz |
Make ``p'' an explicit alias for ``print'' instead of being an
implicit alias for ``panic'', since this seems to be more rational.
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_command.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 34f435c..9cc2dbf 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_command.c,v 1.8 1994/08/27 16:14:08 davidg Exp $ + * $Id: db_command.c,v 1.9 1995/02/05 21:09:04 phk Exp $ */ /* @@ -343,6 +343,7 @@ void db_fncall(); struct command db_command_table[] = { { "print", db_print_cmd, 0, 0 }, + { "p", db_print_cmd, 0, 0 }, { "examine", db_examine_cmd, CS_SET_DOT, 0 }, { "x", db_examine_cmd, CS_SET_DOT, 0 }, { "search", db_search_cmd, CS_OWN|CS_SET_DOT, 0 }, |