Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by George Sherwood (f21a3ef1144ac6dfc864aca7d0b7c0ad6e7721aa)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: George Sherwood <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by George Sherwood (f21a3ef1144ac6dfc864aca7d0b7c0ad6e7721aa)
  • Date: Mon, 16 Mar 2009 10:03:27 -0500

GIT changes to master grimoire by George Sherwood <george AT beernabeer.com>:

shell-term-fm/bash-completion/DETAILS | 2 +-
shell-term-fm/bash-completion/HISTORY | 4 ++++
shell-term-fm/bash-completion/start_completion | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit f21a3ef1144ac6dfc864aca7d0b7c0ad6e7721aa
Author: George Sherwood <george AT beernabeer.com>
Commit: George Sherwood <george AT beernabeer.com>

bash-completion: Updated to work with bash 4.0. PATCHLEVEL++

diff --git a/shell-term-fm/bash-completion/DETAILS
b/shell-term-fm/bash-completion/DETAILS
index ea66041..fe9d002 100755
--- a/shell-term-fm/bash-completion/DETAILS
+++ b/shell-term-fm/bash-completion/DETAILS
@@ -6,7 +6,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/bash_completion
SOURCE_URL[0]=http://www.caliban.org/files/bash/$SOURCE
WEB_SITE=http://www.caliban.org/bash/index.shtml#completion
ENTERED=20020215
- PATCHLEVEL=4
+ PATCHLEVEL=5
LICENSE[0]=GPL
KEYWORDS="bash console"
SHORT="bash programmable completion"
diff --git a/shell-term-fm/bash-completion/HISTORY
b/shell-term-fm/bash-completion/HISTORY
index ea6083b..e94d8e0 100644
--- a/shell-term-fm/bash-completion/HISTORY
+++ b/shell-term-fm/bash-completion/HISTORY
@@ -1,3 +1,7 @@
+2009-03-16 George Sherwood <gsherwood AT sourcemage.org>
+ * DETAILS: PATCHLEVEL++
+ * start_completion: Updated to work with bash 4.0
+
2008-11-25 George Sherwood <gsherwood AT sourcemage.org>
* DETAILS: PATCHLEVEL++
* smgl_completion: Added time to gaze
diff --git a/shell-term-fm/bash-completion/start_completion
b/shell-term-fm/bash-completion/start_completion
index f6d687b..d544560 100644
--- a/shell-term-fm/bash-completion/start_completion
+++ b/shell-term-fm/bash-completion/start_completion
@@ -3,7 +3,7 @@
bash=${BASH_VERSION%.*}; bmajor=${bash%.*}; bminor=${bash#*.}
if [ "x$bash" != "x" ] && [ "$PS1" ] && [ -f /etc/bash_completion ]
then
- if [ $bmajor$bminor -gt 204 ] || [ $bmajor -eq 3 ]
+ if [ $bmajor$bminor -gt 204 ] || [ $bmajor -ge 3 ]
then # interactive shell
# Source completion code
. /etc/bash_completion



  • [SM-Commit] GIT changes to master grimoire by George Sherwood (f21a3ef1144ac6dfc864aca7d0b7c0ad6e7721aa), George Sherwood, 03/16/2009

Archive powered by MHonArc 2.6.24.

Top of Page