Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Nov 2002 22:51:18 -0800 (PST)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 21450 for review
Message-ID:  <200211240651.gAO6pI4k040315@repoman.freebsd.org>

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

Change 21450 by marcel@marcel_nfs on 2002/11/23 22:50:51

	What the heck: handle tab as well.

Affected files ...

.. //depot/projects/ia64/sys/dev/vga/vga.c#2 edit

Differences ...

==== //depot/projects/ia64/sys/dev/vga/vga.c#2 (text+ko) ====

@@ -97,6 +97,11 @@
 			x--;
 		d = 0;
 		break;
+	case 0x09:	/* tab */
+		x = (x + 8) & ~7;
+		if (x < 80)
+			return;
+		/* FALLTHOUGH */
 	case 0x0a:	/* linefeed */
 		if (y == 24)
 			vga_scrollup(sc);

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




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