aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/bash-completion
diff options
context:
space:
mode:
authorWei Liu <liuw@liuw.name>2011-07-19 16:02:36 +0100
committerWei Liu <liuw@liuw.name>2011-07-19 16:02:36 +0100
commit1b86994afeb2a7f751fc3d01a83573d7a002db0c (patch)
treeeabe62c18b1d8711204f5286ef5f101c4495aa1d /tools/libxl/bash-completion
parentb2c448b55c7f31c9b18a02630cc6c9852afdfebc (diff)
downloadxen-1b86994afeb2a7f751fc3d01a83573d7a002db0c.tar.gz
xen-1b86994afeb2a7f751fc3d01a83573d7a002db0c.tar.bz2
xen-1b86994afeb2a7f751fc3d01a83573d7a002db0c.zip
libxl: clean up trailing whitespaces in code.
Commit exactly the results of running find \! -iname '*.txt' -type f -print0 | xargs -0 perl -p -i.bak -E 's/\s+\n/\n/' Signed-off-by: Wei Liu <liuw@liuw.name> Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com> Committed: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/libxl/bash-completion')
-rw-r--r--tools/libxl/bash-completion2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxl/bash-completion b/tools/libxl/bash-completion
index adf994f0d4..b184f7494d 100644
--- a/tools/libxl/bash-completion
+++ b/tools/libxl/bash-completion
@@ -9,7 +9,7 @@ _xl()
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
xl=xl
-
+
if [[ $COMP_CWORD == 1 ]] ; then
opts=`${xl} help 2>/dev/null | sed '1,4d' | awk '{print $1}' | sed 's/$/ ,/g'` && COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0