Author: dteske Date: Tue Mar 31 22:10:40 2015 New Revision: 280923 URL: https://svnweb.freebsd.org/changeset/base/280923
Log: Whitespace. No functional change(s). MFC after: 3 days MFH: stable/10 Modified: head/sys/boot/forth/beastie.4th head/sys/boot/forth/brand.4th Modified: head/sys/boot/forth/beastie.4th ============================================================================== --- head/sys/boot/forth/beastie.4th Tue Mar 31 21:46:44 2015 (r280922) +++ head/sys/boot/forth/beastie.4th Tue Mar 31 22:10:40 2015 (r280923) @@ -1,6 +1,6 @@ \ Copyright (c) 2003 Scott Long <[email protected]> \ Copyright (c) 2003 Aleksander Fafula <[email protected]> -\ Copyright (c) 2006-2013 Devin Teske <[email protected]> +\ Copyright (c) 2006-2015 Devin Teske <[email protected]> \ All rights reserved. \ \ Redistribution and use in source and binary forms, with or without @@ -193,14 +193,10 @@ variable logoY s" loader_logo_x" getenv dup -1 <> if ?number 1 = if logoX ! then - else - drop - then + else drop then s" loader_logo_y" getenv dup -1 <> if ?number 1 = if logoY ! then - else - drop - then + else drop then s" loader_logo" getenv dup -1 <> if dup 5 + allocate if ENOMEM throw then @@ -247,8 +243,7 @@ variable logoY s" set beastie_disable=YES" evaluate then else drop then - s" beastie_disable" getenv - dup -1 <> if + s" beastie_disable" getenv dup -1 <> if s" YES" compare-insensitive 0= if any_conf_read? if load_xen_throw @@ -257,12 +252,9 @@ variable logoY then exit \ to autoboot (default) then - else - drop - then + else drop then - s" loader_delay" getenv - -1 = if + s" loader_delay" getenv -1 = if s" include /boot/menu.rc" evaluate else drop Modified: head/sys/boot/forth/brand.4th ============================================================================== --- head/sys/boot/forth/brand.4th Tue Mar 31 21:46:44 2015 (r280922) +++ head/sys/boot/forth/brand.4th Tue Mar 31 22:10:40 2015 (r280923) @@ -1,4 +1,4 @@ -\ Copyright (c) 2006-2011 Devin Teske <[email protected]> +\ Copyright (c) 2006-2015 Devin Teske <[email protected]> \ All rights reserved. \ \ Redistribution and use in source and binary forms, with or without @@ -64,20 +64,11 @@ variable brandY : draw-brand ( -- ) s" loader_brand_x" getenv dup -1 <> if - ?number 1 = if - brandX ! - then - else - drop - then - + ?number 1 = if brandX ! then + else drop then s" loader_brand_y" getenv dup -1 <> if - ?number 1 = if - brandY ! - then - else - drop - then + ?number 1 = if brandY ! then + else drop then s" loader_brand" getenv dup -1 = if brandX @ brandY @ fbsd-logo _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
