Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Apr 2015 01:25:59 +0000 (UTC)
From:      Devin Teske <dteske@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r280936 - head/sys/boot/forth
Message-ID:  <201504010125.t311PxIN039255@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dteske
Date: Wed Apr  1 01:25:58 2015
New Revision: 280936
URL: https://svnweb.freebsd.org/changeset/base/280936

Log:
  When forced to draw ASCII lines/boxen, use `=' for the horizontal line
  when double frames are requested versus single.
  
  MFC after:	3 days
  X-MFC-to:	stable/10

Modified:
  head/sys/boot/forth/frames.4th

Modified: head/sys/boot/forth/frames.4th
==============================================================================
--- head/sys/boot/forth/frames.4th	Wed Apr  1 01:22:30 2015	(r280935)
+++ head/sys/boot/forth/frames.4th	Wed Apr  1 01:25:58 2015	(r280936)
@@ -39,6 +39,7 @@ variable fill
 
 \ ASCII frames (used when serial console is detected)
  45 constant ascii_dash
+ 61 constant ascii_equal
 124 constant ascii_pipe
  43 constant ascii_plus
 
@@ -113,7 +114,11 @@ s" arch-pc98" environment? [if]
 ;
 
 : f_double	( -- )	\ set frames to double
-	boot_serial? if f_ascii exit then
+	boot_serial? if
+		f_ascii
+		ascii_equal h_el !
+		exit
+	then
 	dh_el h_el !
 	dv_el v_el !
 	dlt_el lt_el !



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