[Bash-completion-devel] Ubuntu bash-completion 20060301-4ubuntu3

Ubuntu Merge-o-Matic mom at ubuntu.com
Tue Jan 6 21:48:04 UTC 2009


This e-mail has been sent due to an upload to Ubuntu that contains Ubuntu
changes.  It contains the difference between the new version and the
previous version of the same source package in Ubuntu.
-------------- next part --------------
Format: 1.7
Date: Sun, 28 Dec 2008 13:31:39 +0000
Source: bash-completion
Binary: bash-completion
Architecture: source
Version: 20060301-4ubuntu3
Distribution: jaunty
Urgency: low
Maintainer: Ubuntu MOTU Developers <ubuntu-motu at lists.ubuntu.com>
Changed-By: Martin Mai <martinmai1024 at web.de>
Description: 
 bash-completion - programmable completion for the bash shell
Launchpad-Bugs-Fixed: 249337
Changes: 
 bash-completion (20060301-4ubuntu3) jaunty; urgency=low
 .
   * Fix IFS issue in _umount and correct _get_cword in _postfix (LP: #249337)
Files: 
 ad75c5a38b726ae119719c5542617f1b 1125 shells standard bash-completion_20060301-4ubuntu3.dsc
 ed7d1df7725f651f5901967d20c4dc4f 20633 shells standard bash-completion_20060301-4ubuntu3.diff.gz
Original-Maintainer: Luk Claes <luk at debian.org>
-------------- next part --------------
diff -pruN 20060301-4ubuntu2/bash_completion 20060301-4ubuntu3/bash_completion
--- 20060301-4ubuntu2/bash_completion	2009-01-06 21:24:22.000000000 +0000
+++ 20060301-4ubuntu3/bash_completion	2009-01-06 21:24:21.000000000 +0000
@@ -706,10 +706,8 @@ _umount()
 	COMPREPLY=()
 	cur=`_get_cword`
 
-	OLDIFS="$IFS"
-	IFS="\n"
+	local IFS=$'\n'
 	COMPREPLY=( $( compgen -W '$( mount | cut -d" " -f 3 )' -- $cur ) )
-	IFS="$OLDIFS"
 
 	return 0
 }
@@ -1359,11 +1357,11 @@ _postfix()
 		return 0
 	fi
 	if [[ $prev == '-D' ]]; then
-		COMPREPLY=( $( compgen -W 'start' -- "`get_cword`" ) )
+		COMPREPLY=( $( compgen -W 'start' -- "`_get_cword`" ) )
 		return 0
 	fi
 	COMPREPLY=( $( compgen -W 'start stop reload abort flush check' -- \
-		"`get_cword`" ) )
+		"`_get_cword`" ) )
 }
 complete -F _postfix postfix
 
diff -pruN 20060301-4ubuntu2/debian/changelog 20060301-4ubuntu3/debian/changelog
--- 20060301-4ubuntu2/debian/changelog	2009-01-06 21:24:22.000000000 +0000
+++ 20060301-4ubuntu3/debian/changelog	2009-01-06 21:24:21.000000000 +0000
@@ -1,3 +1,9 @@
+bash-completion (20060301-4ubuntu3) jaunty; urgency=low
+
+  * Fix IFS issue in _umount and correct _get_cword in _postfix (LP: #249337)
+
+ -- Martin Mai <martinmai1024 at web.de>  Sun, 28 Dec 2008 13:31:39 +0000
+
 bash-completion (20060301-4ubuntu2) jaunty; urgency=low
 
   * Added qdbus completion (LP: 257903)


More information about the Bash-completion-devel mailing list