Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Dec 2008 20:10:35 GMT
From:      Ed Schouten <ed@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 154069 for review
Message-ID:  <200812042010.mB4KAZNQ022566@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=154069

Change 154069 by ed@ed_flippo on 2008/12/04 20:09:59

	Woops! Call mark_for_update() on the column beyond the putchar()
	as well. Otherwise an update won't happen, because the region
	has a zero size.

Affected files ...

.. //depot/projects/mpsafetty/sys/dev/syscons/scterm-teken.c#6 edit

Differences ...

==== //depot/projects/mpsafetty/sys/dev/syscons/scterm-teken.c#6 (text+ko) ====

@@ -273,6 +273,7 @@
 	p = sc_vtb_pointer(&scp->vtb, cursor);
 	sc_vtb_putchar(&scp->vtb, p, map[ch], scteken_attr(a));
 	mark_for_update(scp, cursor);
+	mark_for_update(scp, cursor + 1);
 }
 
 static void



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