1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

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
This commit is contained in:
Devin Teske 2015-04-01 01:25:58 +00:00
parent a833f92d40
commit b2510b83a5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=280936

View File

@ -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 !