diff options
author | Ulrich Müller <ulm@gentoo.org> | 2009-08-18 17:50:48 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2009-08-18 17:50:48 +0000 |
commit | 5dac375deaabbf4c120a8c94d898f60581ec7bd4 (patch) | |
tree | b07c0ecaca121d57f6ef5c3a69bd18ae6186f5c7 /libs | |
parent | Fix indentation code in output module. (diff) | |
download | eselect-5dac375deaabbf4c120a8c94d898f60581ec7bd4.tar.gz eselect-5dac375deaabbf4c120a8c94d898f60581ec7bd4.tar.bz2 eselect-5dac375deaabbf4c120a8c94d898f60581ec7bd4.zip |
Use plain echo instead of "echo -e".
svn path=/trunk/; revision=623
Diffstat (limited to 'libs')
-rw-r--r-- | libs/output.bash.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/output.bash.in b/libs/output.bash.in index d15e2bc..0b9a8b0 100644 --- a/libs/output.bash.in +++ b/libs/output.bash.in @@ -195,13 +195,13 @@ apply_text_highlights() { # highlight PUBLIC # Highlight all arguments. Text highlighting function. highlight() { - echo -n -e "%%%HI%%%${*}%%%RE%%%" + echo -n "%%%HI%%%${*}%%%RE%%%" } # highlight_warning PUBLIC # Highlight all arguments as a warning (red). Text highlighting function. highlight_warning() { - echo -n -e "%%%WA%%%${*}%%%RE%%%" + echo -n "%%%WA%%%${*}%%%RE%%%" } # highlight_marker PUBLIC @@ -209,7 +209,7 @@ highlight_warning() { # (or $2 if set) behind it. highlight_marker() { local text=${1} mark=${2-*} - echo -n -e "${text}" + echo -n "${text}" if [[ -n ${mark} ]]; then echo -n " " highlight "${mark}" |