diff options
author | jkh <jkh@FreeBSD.org> | 1994-11-21 04:35:26 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-11-21 04:35:26 +0000 |
commit | 7dd9faed0a9a32266b21bc40e73f00b9aca1bf8d (patch) | |
tree | ebdfebb8e1cbf5b2ebfd238110032c2e4ab31d0b /release/miscfuncs.sh | |
parent | ca54b9f5d7d70d9fa48ce733943d8d7581294dbe (diff) | |
download | FreeBSD-src-7dd9faed0a9a32266b21bc40e73f00b9aca1bf8d.zip FreeBSD-src-7dd9faed0a9a32266b21bc40e73f00b9aca1bf8d.tar.gz |
Remove extra-space braindamage.
Diffstat (limited to 'release/miscfuncs.sh')
-rw-r--r-- | release/miscfuncs.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/release/miscfuncs.sh b/release/miscfuncs.sh index f92d6ef..704bf05 100644 --- a/release/miscfuncs.sh +++ b/release/miscfuncs.sh @@ -10,7 +10,7 @@ # putting your name on top after doing something trivial like reindenting # it, just to make it look like you wrote it!). # -# $Id: miscfuncs.sh,v 1.5 1994/11/18 15:13:37 jkh Exp $ +# $Id: miscfuncs.sh,v 1.6 1994/11/20 14:49:48 jkh Exp $ if [ "$_MISCFUNCS_SH_LOADED_" = "yes" ]; then return 0 @@ -72,18 +72,21 @@ confirm() # A simple message box dialog. message() { + echo "Progress <$*>" > /dev/ttyv1 dialog $clear --title "Progress" --infobox "$*" -1 -1 } # A simple error dialog. error() { + echo "ERROR <$*>" > /dev/ttyv1 dialog $clear --title "Error!" --msgbox "$*" -1 -1 } # Something isn't supported yet! :-( not_supported() { + echo "<Feature not supported>" > /dev/ttyv1 dialog $clear --title "Sorry!" \ --msgbox "This feature is not supported in the current version of the \ installation tools. Barring some sort of fatal accident, we do \ |