svn commit: r256964 - user/ed/newcons/sys/dev/vt

Aleksandr Rybalko ray at FreeBSD.org
Wed Oct 23 13:35:47 UTC 2013


Author: ray
Date: Wed Oct 23 13:35:46 2013
New Revision: 256964
URL: http://svnweb.freebsd.org/changeset/base/256964

Log:
  Add new vt_buf flag VBF_HISTORY_FULL - whole history filled.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  user/ed/newcons/sys/dev/vt/vt.h

Modified: user/ed/newcons/sys/dev/vt/vt.h
==============================================================================
--- user/ed/newcons/sys/dev/vt/vt.h	Wed Oct 23 13:32:52 2013	(r256963)
+++ user/ed/newcons/sys/dev/vt/vt.h	Wed Oct 23 13:35:46 2013	(r256964)
@@ -120,6 +120,7 @@ struct vt_buf {
 #define	VBF_STATIC	0x2	/* Buffer is statically allocated. */
 #define	VBF_MTX_INIT	0x4	/* Mutex initialized. */
 #define	VBF_SCROLL	0x8	/* scroll locked mode. */
+#define	VBF_HISTORY_FULL 0x10	/* All rows filled. */
 	int			 vb_history_size;
 #define	VBF_DEFAULT_HISTORY_SIZE	200
 	int			 vb_roffset;	/* (b) History rows offset. */


More information about the svn-src-user mailing list