svn commit: r197118 - head/sys/dev/syscons

Ed Schouten ed at FreeBSD.org
Sat Sep 12 14:46:22 UTC 2009


Author: ed
Date: Sat Sep 12 14:46:22 2009
New Revision: 197118
URL: http://svn.freebsd.org/changeset/base/197118

Log:
  Commit a change that I missed in the previous commit.
  
  I ran `svn commit' in sys/teken/, instead of sys/.

Modified:
  head/sys/dev/syscons/scterm-teken.c

Modified: head/sys/dev/syscons/scterm-teken.c
==============================================================================
--- head/sys/dev/syscons/scterm-teken.c	Sat Sep 12 12:44:21 2009	(r197117)
+++ head/sys/dev/syscons/scterm-teken.c	Sat Sep 12 14:46:22 2009	(r197118)
@@ -31,6 +31,7 @@
 __FBSDID("$FreeBSD$");
 
 #include "opt_syscons.h"
+#include "opt_teken.h"
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -128,6 +129,9 @@ scteken_init(scr_stat *scp, void **softc
 #ifndef TEKEN_UTF8
 		teken_set_8bit(&ts->ts_teken);
 #endif /* !TEKEN_UTF8 */
+#ifndef TEKEN_XTERM
+		teken_set_cons25(&ts->ts_teken);
+#endif /* !TEKEN_XTERM */
 
 		tp.tp_row = scp->ysize;
 		tp.tp_col = scp->xsize;


More information about the svn-src-all mailing list