PERFORCE change 154069 for review

Ed Schouten ed at FreeBSD.org
Thu Dec 4 12:10:38 PST 2008


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

Change 154069 by ed at 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


More information about the p4-projects mailing list