diff options
author | Eric Bélanger <snowmaniscool@gmail.com> | 2011-02-10 06:28:43 -0500 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2011-02-10 12:48:07 +0100 |
commit | 15ff1596246ba37521ff8807722a7679390fdf01 (patch) | |
tree | deb259479abc72503976a6fb004e5a264e43a5f2 /functions | |
parent | 9f23b3a2d5f2b6a3601b2daacc107f80499bf0ba (diff) |
Added missing else clause in set_consolefont function
The else clause was missing in the return value test. This caused the status to remain
at BUSY instead of being changed to DONE for systems where CONSOLEMAP was not used.
Signed-off-by: Eric Bélanger <snowmaniscool@gmail.com>
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -354,6 +354,8 @@ if [ "$CONSOLE" = "" -a "$TERM" = "linux" -a -t 1 ]; then printf "\033(K"; fi EOF stat_done + else + stat_done fi } |