aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1995-03-05 22:56:21 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1995-03-05 22:56:21 +0000
commit2389804061643f94836fc9a460fbdd8679d803fe (patch)
tree704e671c6bf5450ca32a84a9e92f7a069738230c /sys/ddb
parent31aafd54c3a3c33b2d9b8745be548f7e902def64 (diff)
downloadsrc-2389804061643f94836fc9a460fbdd8679d803fe.tar.gz
src-2389804061643f94836fc9a460fbdd8679d803fe.zip
Make ``p'' an explicit alias for ``print'' instead of being an
implicit alias for ``panic'', since this seems to be more rational.
Notes
Notes: svn path=/head/; revision=6920
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_command.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c
index 34f435c18d00..9cc2dbfa1553 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 },