[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-04-03 Thread Daniel Drucker
Yes, this fixes it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-03-29 Thread Dan Krejsa
Hi,

I installed bash 4.2-2ubuntu2.1 from precise-proposed.
Enabling the direxpand bash shell option fixes this issue to my satisfaction, 
thanks!

- Dan

** Tags removed: verification-needed
** Tags added: verification-done

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-03-28 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/precise-proposed/bash

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-03-28 Thread Brian Murray
Hello Dan, or anyone else affected,

Accepted bash into precise-proposed. The package will build now and be
available at http://launchpad.net/ubuntu/+source/bash/4.2-2ubuntu2.1 in
a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: bash (Ubuntu Precise)
   Status: In Progress => Fix Committed

** Tags added: verification-needed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-03-18 Thread Dmitrijs Ledkovs
$ dput ubuntu bash_4.2-2ubuntu2.1_source.changes
Uploading to ubuntu (via ftp to upload.ubuntu.com):
  Uploading bash_4.2-2ubuntu2.1.dsc: done.
  Uploading bash_4.2-2ubuntu2.1.diff.gz: done.  
  Uploading bash_4.2-2ubuntu2.1_source.changes: done.
Successfully uploaded packages.

The package was uploaded into precise-proposed unapproved queue, pending
for a member of the SRU team to accept the package into the precise-
proposed archive.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-03-18 Thread Adam Stokes
Updated debdiff to include bug lp in changelog

** Description changed:

  Binary package hint: bash
  
  [Impact]
  Bash-4.2 tries to leave completed directory names as the user typed them,
  without expanding them to a full pathname.  One effect of this is that
  shell variables used in pathnames being completed (e.g., $HOME) are left
  unchanged, but the `$' is quoted by readline because it is a special
  character to the shell.
  
  [Test Case]
  - [Current test case showing expected behavior]
  
  Items to address so far:
-   - that $ is escaped less
-   - that direxpand does not expand as expected
-   - that direxpand option is available and if enabled, expands directories 
with variable names.
+   - that $ is escaped less
+   - that direxpand does not expand as expected
+   - that direxpand option is available and if enabled, expands directories 
with variable names.
+ 
+ zef:~/Projects/precise-amd64$ mkdir -p /tmp/testd/finger/toe
+ zef:~/Projects/precise-amd64$ cd /tmp/testd/
+ zef:/tmp/testd$ td=`pwd`
+ zef:/tmp/testd$ cd ../
+ zef:/tmp$ ls \$td/finger 
+ 
+ zef:/tmp$ shopt -s direxpand
+ zef:/tmp$ ls $td/fing
+ zef:/tmp$ ls /tmp/testd/finger/
+ toe
  
  - [Previous Test Case showing non-working bash installation]
- 
  ~$ mkdir -p /tmp/testd/finger/toe
  /tmp$ cd /tmp/testd
  /tmp/testd$ td=`pwd`
  /tmp/testd$ cd ../
  /tmp$ ls $td/fing
  
  Type a TAB character at this point, and bash completion makes the line:
  /tmp$ ls \$td/finger
  
  Note that while 'fing' has been expanded to 'finger ' (with a space at the 
end), the $td variable reference has had the
  $ character quoted with a backslash.  This prevents further extension of the 
pathname, and in fact makes
  the command invalid; if I type a newline at this point, I get:
  ls: cannot access $td/finger: No such file or directory
  
  This is not useful behavior.  I believe that in Ubuntu 10.10, the $td 
variable would have been expanded
  to  '/tmp/testd', and subsequent completions starting from 
'/tmp/testd/finger' would have worked.
  
  [The version of /etc/bash_completion.d/acroread.sh that is installed
  starts with:
  
  # _filedir : to handle file and directories with spaces in their names.
  if ! type _filedir &> /dev/null ; then
  
  so I don't think that file is overriding /etc/bash_completion's _filedir
  ...]
  
  [Regression Potential]
  
- 
  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: bash 4.2-0ubuntu3
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Fri May  6 09:48:29 2011
  InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release amd64 (20091027)
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, user)
   LANG=en_US.UTF-8
   LANGUAGE=en_US:en
  SourcePackage: bash
  UpgradeStatus: Upgraded to natty on 2011-04-30 (6 days ago)

** Description changed:

  Binary package hint: bash
  
  [Impact]
  Bash-4.2 tries to leave completed directory names as the user typed them,
  without expanding them to a full pathname.  One effect of this is that
  shell variables used in pathnames being completed (e.g., $HOME) are left
  unchanged, but the `$' is quoted by readline because it is a special
  character to the shell.
  
  [Test Case]
  - [Current test case showing expected behavior]
  
  Items to address so far:
    - that $ is escaped less
    - that direxpand does not expand as expected
    - that direxpand option is available and if enabled, expands directories 
with variable names.
  
  zef:~/Projects/precise-amd64$ mkdir -p /tmp/testd/finger/toe
  zef:~/Projects/precise-amd64$ cd /tmp/testd/
  zef:/tmp/testd$ td=`pwd`
  zef:/tmp/testd$ cd ../
- zef:/tmp$ ls \$td/finger 
+ zef:/tmp$ ls \$td/finger
  
  zef:/tmp$ shopt -s direxpand
  zef:/tmp$ ls $td/fing
  zef:/tmp$ ls /tmp/testd/finger/
  toe
  
  - [Previous Test Case showing non-working bash installation]
  ~$ mkdir -p /tmp/testd/finger/toe
  /tmp$ cd /tmp/testd
  /tmp/testd$ td=`pwd`
  /tmp/testd$ cd ../
  /tmp$ ls $td/fing
  
  Type a TAB character at this point, and bash completion makes the line:
  /tmp$ ls \$td/finger
  
  Note that while 'fing' has been expanded to 'finger ' (with a space at the 
end), the $td variable reference has had the
  $ character quoted with a backslash.  This prevents further extension of the 
pathname, and in fact makes
  the command invalid; if I type a newline at this point, I get:
  ls: cannot access $td/finger: No such file or directory
  
  This is not useful behavior.  I believe that in Ubuntu 10.10, the $td 
variable would have been expanded
  to  '/tmp/testd', and subsequent completions starting from 
'/tmp/testd/finger' would have worked.
  
  [The version of /etc/bash_completion.d/acroread.sh that is installed
  starts with:
  
  # _filedir : to handle file and directories with spaces in their names.
  if ! type _filedir &> /dev/null ; then
  
  so I don't think that file is overriding /etc/bash_completion's _filedir
  ...]
  
  [Regression P

[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-03-18 Thread Adam Stokes
If anyone still has a reproducer environment setup with a patch bash
version on precise and can easily reproduce please feel free to do so
and alter the description above. In the meantime, Ill get a reproducer
setup and update the description once my test is done.

Thanks
Adam

** Description changed:

  Binary package hint: bash
+ 
+ [Impact]
+ Bash-4.2 tries to leave completed directory names as the user typed them,
+ without expanding them to a full pathname.  One effect of this is that
+ shell variables used in pathnames being completed (e.g., $HOME) are left
+ unchanged, but the `$' is quoted by readline because it is a special
+ character to the shell.
+ 
+ [Test Case]
+ - [Current test case showing expected behavior]
+ 
+ Items to address so far:
+   - that $ is escaped less
+   - that direxpand does not expand as expected
+   - that direxpand option is available and if enabled, expands directories 
with variable names.
+ 
+ - [Previous Test Case showing non-working bash installation]
  
  ~$ mkdir -p /tmp/testd/finger/toe
  /tmp$ cd /tmp/testd
  /tmp/testd$ td=`pwd`
  /tmp/testd$ cd ../
  /tmp$ ls $td/fing
  
  Type a TAB character at this point, and bash completion makes the line:
- /tmp$ ls \$td/finger 
+ /tmp$ ls \$td/finger
  
  Note that while 'fing' has been expanded to 'finger ' (with a space at the 
end), the $td variable reference has had the
  $ character quoted with a backslash.  This prevents further extension of the 
pathname, and in fact makes
  the command invalid; if I type a newline at this point, I get:
  ls: cannot access $td/finger: No such file or directory
  
  This is not useful behavior.  I believe that in Ubuntu 10.10, the $td 
variable would have been expanded
  to  '/tmp/testd', and subsequent completions starting from 
'/tmp/testd/finger' would have worked.
  
- 
- [The version of /etc/bash_completion.d/acroread.sh that is installed starts 
with:
+ [The version of /etc/bash_completion.d/acroread.sh that is installed
+ starts with:
  
  # _filedir : to handle file and directories with spaces in their names.
  if ! type _filedir &> /dev/null ; then
  
  so I don't think that file is overriding /etc/bash_completion's _filedir
  ...]
+ 
+ [Regression Potential]
+ 
  
  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: bash 4.2-0ubuntu3
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Fri May  6 09:48:29 2011
  InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release amd64 (20091027)
  ProcEnviron:
-  SHELL=/bin/bash
-  PATH=(custom, user)
-  LANG=en_US.UTF-8
-  LANGUAGE=en_US:en
+  SHELL=/bin/bash
+  PATH=(custom, user)
+  LANG=en_US.UTF-8
+  LANGUAGE=en_US:en
  SourcePackage: bash
  UpgradeStatus: Upgraded to natty on 2011-04-30 (6 days ago)

** Changed in: bash (Ubuntu Precise)
   Status: Incomplete => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-02-12 Thread Bug Watch Updater
** Changed in: bash (Debian)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-02-12 Thread Dmitrijs Ledkovs
@ joerg:
but the default interactive behaviour has changed
$ shopt direxpand
direxpand   off

And one needs to manually re-enable that option to get previous
behaviour.

The template you posted lacks required information. Specifically:

The test case should check:
- that $ is escaped less
- that direxpand does not expand as expected
- that direxpand option is available and if enabled, expands directories with 
variable names.

The impact should describe what is being changed (underquoting + new
option).

Regression potential w.r.t. to underquoting should be considered (e.g.
security issues?!)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-02-12 Thread JThoennes
[Impact] 
 * Explanation see above.
 * This is really a bug, ie the behaviour expected by the user changes 
unexpectedly.
 * In addition, only the interactive command line is affected, bash scripts 
should not see this change.
[Test Case]
 * See above.
[Regression Potential] 
 * I see a low potential for regressions since this bug is related to the 
interactive command line and would not influence any scripts.
[Other Info]

So IMHO this is a very good candidate for Precise.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-02-12 Thread Dmitrijs Ledkovs
unsubscribing sponsors, please resubscribe when the bug description is
updated as per SRU guidelines.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-02-12 Thread Dmitrijs Ledkovs
@Alec Warner (antarus):
The proposed patch is ok, sans missing this bug reference and not using correct 
SRU version number. But that's easy enough to fix when sponsoring. Please 
update bug description as per SRU guidelines if you want this uploaded in 
Precise. Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-02-12 Thread Dmitrijs Ledkovs
If you need a fix for the bug in precise, please update the bug
description as per Stable Release Updates template.

[1] https://wiki.ubuntu.com/StableReleaseUpdates#SRU_Bug_Template

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-02-12 Thread Dmitrijs Ledkovs
I do not believe the fix is a valid SRU candidate, because it changes
quoting behaviour, introduces a new option and requires a user to opt-in
/ change that option.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-02-12 Thread Dmitrijs Ledkovs
This bug was fixed in 4.2-3 upload, and hence is fixed in quantal and
raring.

However, there is a new option that one needs to set - direxpand.

direxpand
 If  set, bash replaces directory names with the results of word expansion when 
performing filename completion.  This
 changes the contents of the readline editing buffer.  If not set, bash 
attempts to preserve what the user typed.


bash (4.2-3) unstable; urgency=low

  * Apply upstream patches 025 - 029, fixes for
- When used in a shell function, `declare -g -a array=(compound assignment)'
  creates a local variable instead of a global one.
- The `lastpipe' option does not behave correctly on machines where the
  open file limit is less than 256.
- When the `extglob' shell option is enabled, pattern substitution does not
  work correctly in the presence of multibyte characters.
- When using a word expansion for which the right hand side is evaluated,
  certain expansions of quoted null strings include spurious ^? characters.
- Bash-4.2 tries to leave completed directory names as the user typed them,
  without expanding them to a full pathname.  One effect of this is that
  shell variables used in pathnames being completed (e.g., $HOME) are left
  unchanged, but the `$' is quoted by readline because it is a special
  character to the shell. This patch introduces two things:
  - A new shell option, `direxpand', which, if set, attempts to emulate the
bash-4.1 behavior of expanding words to full pathnames during
completion;
  - A set of heuristics that reduce the number of times special characters
such as `$' are quoted when the directory name is not expanded.
  * Mark bash and bash-static as Multi-Arch: foreign . Closes: #674120.
  * Avoid warning for unset debian_chroot with -u (Marko Mäkelä).
Closes: #659940.
  * Fix string expansion: \u and \U for code points U+0080 to U+00FF (Darran
Salt). Closes: #661386.
  * Search $- for `i' for the interactivity test. Closes: #482194.
  * Search for bash_completion in /usr/share/bash-completion too.
Closes: #655071, #655208.

 -- Matthias Klose   Sun, 01 Jul 2012 13:45:35 +0200


** Also affects: bash (Ubuntu Quantal)
   Importance: Undecided
   Status: New

** Also affects: bash (Ubuntu Raring)
   Importance: Undecided
   Status: Confirmed

** Also affects: bash (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Changed in: bash (Ubuntu Raring)
   Status: Confirmed => Fix Released

** Changed in: bash (Ubuntu Quantal)
   Status: New => Fix Released

** Changed in: bash (Ubuntu Precise)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-01-18 Thread Graeme Hewson
$ bash --version
GNU bash, version 4.2.37(1)-release (x86_64-pc-linux-gnu)

$ wajig list bash
ii  bash  4.2-5ubuntu1  
 amd64GNU Bourne Again SHell
ii  bash-completion   1:2.0-1ubuntu2
 all  programmable completion for the bash shell
ii  command-not-found 0.3ubuntu5
 all  Suggest installation of packages in interactive bash sessions

$ wajig detail bash
Package: bash
Essential: yes
New: yes
State: installed
Automatically installed: no
Multi-Arch: foreign
Version: 4.2-5ubuntu1
Priority: required
Section: shells
Maintainer: Ubuntu Developers 
Architecture: amd64
Uncompressed Size: 1,450 k
Depends: base-files (>= 2.1.12), debianutils (>= 2.15)
PreDepends: dash (>= 0.5.5.1-2.2), libc6 (>= 2.15), libtinfo5
Recommends: bash-completion (>= 20060301-0)
Suggests: bash-doc
Conflicts: bash-completion (< 20060301-0), bash-completion (< 20060301-0), bash
Replaces: bash-completion (< 20060301-0), bash-completion (< 20060301-0), 
bash-doc (<= 2.05-1), bash-doc (<= 2.05-1)
Provides: bash
Provided by: bash
Description: GNU Bourne Again SHell

$ wajig detail bash-completion
Package: bash-completion 
State: installed
Automatically installed: no
Multi-Arch: foreign
Version: 1:2.0-1ubuntu2
Priority: standard
Section: shells
Maintainer: Ubuntu Developers 
Architecture: all
Uncompressed Size: 892 k
Depends: bash (>= 3.2)
PreDepends: dpkg (>= 1.15.7.2~)
Breaks: xen-tools (<= 4.1-1), xen-tools (<= 4.1-1)
Replaces: bash, bash, cryptsetup (< 2:1.1.2-2), cryptsetup (< 2:1.1.2-2), 
xen-tools (<= 4.1-1), xen-tools (<= 4.1-1)
Provides: bash-completion
Description: programmable completion for the bash shell

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-01-18 Thread Alec Warner
I need more details from Quantal users then. Quantals' bash has
bash42-029.diff, which fixes the bug in bash that caused a (and I
presume this) problem. It could be Quantal has another bug?

I just downloaded bash_4.2-5ubuntu1_amd64.deb and could not reproduce.
What version of bash are you using?

-A

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-01-17 Thread Graeme Hewson
I'm on Quantal (Kubuntu) and I'm affected by the bug. See also comment
20.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-01-17 Thread Alec Warner
antarus@antarus-glaptop:~$ cd Downloads/
antarus@antarus-glaptop:~/Downloads$ ls
bash_4.2-0ubuntu4_amd64.deb
bash_4.2-2ubuntu2-gg1.debdiff.txt 
bash_4.2-5ubuntu2_amd64.deb
antarus@antarus-glaptop:~/Downloads$ ar x bash_4.2-0ubuntu4_amd64.deb
antarus@antarus-glaptop:~/Downloads$ ls
bash_4.2-0ubuntu4_amd64.debcontrol.tar.gz
bash_4.2-2ubuntu2-gg1.debdiff.txt  data.tar.gz 
bash_4.2-5ubuntu2_amd64.debdebian-binary
antarus@antarus-glaptop:~/Downloads$ tar -zxf data.tar.gz 
antarus@antarus-glaptop:~/Downloads$ ls
bash_4.2-0ubuntu4_amd64.debcontrol.tar.gz etc   
   typescript.txt
bash_4.2-2ubuntu2-gg1.debdiff.txt  data.tar.gz  usr
bash_4.2-5ubuntu2_amd64.debdebian-binary1_i386.deb
bin
antarus@antarus-glaptop:~/Downloads$ bin/bash 
eantarus@antarus-glaptop:~/Downloads$ echo \$HOME

Oneric also appears affected by this bug.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-01-17 Thread Thomas Ward
Nominated for Precise.  As Comment 21 says Quantal and Raring are
unaffected, i'm not nominating them.

Given that this bug was initially filed against Natty, can someone test
this on Oneiric to see if it is also affected?

--
Thomas Ward
Ubuntu Bug Squad Member

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-01-17 Thread Alec Warner
Ok:

This bug does not affect Q or R (I checked.)

I make an internal package (for myself), and it resolves the problem.
I've attached a debdiff which creates bash-4.2-2ubuntu2-gg1; it should be 
trivial to modify it to produce bash4.2-2ubuntu3.


** Attachment added: "A debdiff that applies bash upstream patch 0029 to bash. 
I merely incremented the patch number (from 24 to 25) because I did not apply 
the intermediate patches. I'm unsure if this is kosher, but patch 29 applied 
cleanly without them."
   
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+attachment/3486845/+files/bash_4.2-2ubuntu2-gg1.debdiff.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-11-12 Thread KSSG
I am also suffering this problem in Ubuntu 12.10. 
Commenting out the sourcing of bash-completion managed to fix it, but the 
problem is that it disables all of its advantages. The problem must be in one 
of the various files at /usr/share/bash-completion/completions ,I'd bet. But 
debugging that until finding the culprit would be a task of true patience.

I tried to build bash manually and it always does the same thing unless
I disable sourcing bash-completion.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-10-30 Thread Bug Watch Updater
** Changed in: bash (Debian)
   Status: Unknown => New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-10-30 Thread Axel Beckert
Interestingly I can reproduce this issue only on some machines, but not
on all of them despite they all have bash 4.2.

I could reproduce it on Natty and Precise, on Debian Wheezy, and on one,
but not on all of my Debian Sid boxes (4.2-5).

Disabling the sourcing of /etc/bash_completion (either manually enabled
in /etc/bash.bashrc or ~/.bashrc) made the problem vanish on Debian and
on Natty, but not on Precise. Even purging bash-completion did not help
on Precise.

And that's not all: While on precise using "bash --rcfile /dev/null"
still did not fix the issue, it brought the issue back on Natty. And on
Debian Sid it still worked as expected, i.e. did not add any backslash.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-10-30 Thread Axel Beckert
** Bug watch added: Debian Bug tracker #650626
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650626

** Also affects: bash (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650626
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-10-08 Thread Bill Hammond
But, alas, it seems to be upstream in bash itself.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-10-08 Thread Bill Hammond
This bug was first reported in May 2011 and still not fixed?
It's driving me crazy.  A long-established very helpful bash feature
has been trashed.

What's going on?

This is bad.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-08-23 Thread Carter Sanders
I upgraded to bash 4.2.36(1), and the problem is only half fixed. On
older versions of bash (certainly in the bash2 vintage), cd
$VARIABLE/ offered completions. At lest in the newer version it
doesn't escape the dollar sign anymore, but this is still a removed,
highly used feature.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-08-14 Thread nacorn
Note: This bug affects 12.04 Precise (not just natty).  The solution in
comment 14 was tested on 12.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-08-14 Thread nacorn
SOLUTION: This was a bug in bash which is fixed in patch bash4.2-029.  See 
http://lists.gnu.org/archive/html/bug-bash/2012-07/msg00018.html

I build from source as follows:
  - downlaod bash-4.2.tar.gz from ftp://ftp.gnu.org/pub/gnu/bash/
  - extract
  - download patches bash42-001 through bash42-029 (actually I did all through 
037) from ftp://ftp.gnu.org/pub/gnu/bash/bash-4.2-patches/
 - apply patches
 - ./configure --prefix=/usr/local; make; make install

Using this /usr/local/bash fixes the problem -- tab completion on
environment variables works again.

Can these patches please be applied to the package in precise and oneiric?
Thanks!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-07-27 Thread toadwarble
This is a real pain for me as I set 101 variables to point to
directories I want to get at and am in the habit of typing
$foodir/abc to get what I want and now I can't do it so well.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-07-12 Thread mumeiyamibito
Who makes such specification?
And who come out ahead this specification (or bug) ?

If someone know reason that this specification is better than before
one, please tell me.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-07-10 Thread Rudy Vissers
Please... Using the tab is much important for the
developers/administrators. We can't remove the backslash every time we
use the tab ! It is a bug that can't be in a supported version ! (12.0.4
LTS).  It is the kind of things that makes you hate an environment !
Because we use the tab ALL THE TIME !

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2012-02-22 Thread Digulla-hepe
Maybe this forum post might help to fix the bug:
http://www.linuxquestions.org/questions/linux-general-1/bash-auto-
complete-of-environment-variables-613203/#post3055141

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2011-12-20 Thread Jens Alpers
Since a couple of weeks on 10.11 and still the same behavior. Who
maintains bash?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2011-09-23 Thread Kate Yoak
** Also affects: bash (Fedora)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2011-09-03 Thread Solganik
same here .. had to downgrade to maverick package .. hope it will be
fixed.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2011-09-03 Thread vjrj
As a workaround while this is fixed I've downgraded to maverick package:
http://packages.ubuntu.com/maverick/bash

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2011-07-27 Thread Launchpad Bug Tracker
** Changed in: bash (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/778627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2011-05-28 Thread Richard Lee
This bug is really horrible.  Anyone know what line in bash_completion I
need to fix?  How did it make it into the release???  Also, I sometimes
see completion adding an extra space when completing directory names,
which makes it difficult to traverse through a directory hierarchy with
tab completion.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2011-05-27 Thread Jens Alpers
This bug is really ugly.  I often use 'll $HEAD/'   which now
doesn't work anymore. Unfortunately I  don't hace a 10.10 system anymore
to compare...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs



[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2011-05-10 Thread DavidBriscoe
Was reported on bug-bash mailinglist:
http://lists.gnu.org/archive/html/bug-bash/2011-02/msg00274.html

And Chet has posted a partial fix:
http://lists.gnu.org/archive/html/bug-bash/2011-03/msg00235.html

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2011-05-07 Thread Norbert
My comment #2 was incorrect, sorry.

Trailing space and quoting backslash have not disappeared after doing
#2.

** This bug is no longer a duplicate of bug 769866
   tab completion no longer escapes filenames

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2011-05-07 Thread Norbert
*** This bug is a duplicate of bug 769866 ***
https://bugs.launchpad.net/bugs/769866

Fixed by editing line 1587 of /etc/bash_completion (see
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/769866/comments/10)

** This bug has been marked a duplicate of bug 769866
   tab completion no longer escapes filenames
 * You can subscribe to bug 769866 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/769866/+subscribe

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2011-05-06 Thread Dan Krejsa
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778627

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs