svn commit: r324264 - stable/11/sys/ddb

Edward Tomasz Napierala trasz at FreeBSD.org
Wed Oct 4 11:42:14 UTC 2017


Author: trasz
Date: Wed Oct  4 11:42:12 2017
New Revision: 324264
URL: https://svnweb.freebsd.org/changeset/base/324264

Log:
  MFC r320741:
  
  Make ^c work in ddb(4).

Modified:
  stable/11/sys/ddb/db_input.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/ddb/db_input.c
==============================================================================
--- stable/11/sys/ddb/db_input.c	Wed Oct  4 11:39:44 2017	(r324263)
+++ stable/11/sys/ddb/db_input.c	Wed Oct  4 11:42:12 2017	(r324264)
@@ -195,6 +195,7 @@ db_inputchar(c)
 		    db_delete(1, DEL_FWD);
 		break;
 	    case CTRL('u'):
+	    case CTRL('c'):
 		/* kill entire line: */
 		/* at first, delete to beginning of line */
 		if (db_lc > db_lbuf_start)


More information about the svn-src-all mailing list