PERFORCE change 34256 for review

John Baldwin jhb at FreeBSD.org
Wed Jul 9 11:58:35 PDT 2003


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

Change 34256 by jhb at 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
 		}
 	}
 }


More information about the p4-projects mailing list