Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Jul 2003 11:58:33 -0700 (PDT)
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 34256 for review
Message-ID:  <200307091858.h69IwXne039857@repoman.freebsd.org>

index | next in thread | raw e-mail

http://perforce.freebsd.org/chv.cgi?CH=34256

Change 34256 by jhb@jhb_laptop on 2003/07/09 11:58:07

	- Add a newline when quitting to avoid trashing the db> prompt.
	- Disable the bell for bad keys for now.  bells in ddb don't
	  shut up right now.

Affected files ...

.. //depot/projects/smpng/sys/ddb/db_output.c#5 edit

Differences ...

==== //depot/projects/smpng/sys/ddb/db_output.c#5 (text+ko) ====

@@ -192,11 +192,14 @@
 			/* Quit */
 			if (arg != NULL) {
 				*(int *)arg = 1;
+				db_printf("\n");
 				return;
 			}
 			/* FALLTHROUGH */
 		default:
+#if 0
 			cnputc('\007');
+#endif
 		}
 	}
 }


help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200307091858.h69IwXne039857>