Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] PERFORCE change 79439 by Juuso Alasuutari for review

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Perforce Review Daemon <p4review AT smee.org>
  • To: "Andrew Stitt" <a AT t.armory.com>, "Arjan Bouter" <abouter AT sourcemage.org>, "SM-Commit Daemon" <sm-commit AT lists.ibiblio.org>, "duane_malcolm" <d.malcolm AT auckland.ac.nz>, "Ethan Grammatikidis" <eekee AT eekee.is-a-geek.org>, "Gareth Clay" <gareth AT caffeinefuelled.co.uk>, "Maurizio Boriani" <baux AT member.fsf.org>, "Pieter Lenaerts" <e-type AT sourcemage.org>, "Robin Cook" <rcook AT wyrms.net>, "Seth Woolley" <seth AT swoolley.homeip.net>, "Unet" <unet AT sourcemage.org>, "vladimir_marek" <vlmarek AT volny.cz>
  • Subject: [SM-Commit] PERFORCE change 79439 by Juuso Alasuutari for review
  • Date: Wed, 17 May 2006 19:40:01 +0100 (BST)

Change 79439 by juuso_alasuutari@juuso_alasuutari-kamayuq on 2006/05/17
19:38:54

Fixes to inputrc, bug #10021

Affected files ...

... //sgl/grimoires/devel/libs/readline/DETAILS#9 edit
... //sgl/grimoires/devel/libs/readline/HISTORY#15 edit
... //sgl/grimoires/devel/libs/readline/etc/inputrc#2 edit
... //sgl/grimoires/devel/libs/readline/etc/profile.d/readline.sh#2 edit

Differences ...

==== //sgl/grimoires/devel/libs/readline/DETAILS#9 (xtext) ====

@@ -10,7 +10,7 @@
WEB_SITE=http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
ENTERED=20010922
UPDATED=20040517
- PATCHLEVEL=3
+ PATCHLEVEL=4
BUILD_API=2
KEYWORDS="libs"
SHORT="readline lets users edit command lines as they are typed
in."

==== //sgl/grimoires/devel/libs/readline/HISTORY#15 (text) ====

@@ -1,3 +1,9 @@
+2006-05-17 Juuso Alasuutari <iuso AT sourcemage.org>
+ * etc/inputrc: Add system bell option (as in bug #10021), add
+ word jump arrow key mapping (commented out by default)
+ * etc/profile.d/readline.sh: Added comments, bashified code
+ * DETAILS: Bumped PATCHLEVEL
+
2006-03-20 George Sherwood <george AT beernabeer.com>
* DETAILS: Updated PATCHLEVEL
* PRE_BUILD: Added two patches 003 and 004

==== //sgl/grimoires/devel/libs/readline/etc/inputrc#2 (text) ====

@@ -7,6 +7,9 @@
set convert-meta off
set output-meta on

+# System bell (none, visible or audible)
+set bell-style none
+
# Key mappings
"\e[1~": beginning-of-line
"\e[2~": quoted-insert
@@ -22,3 +25,7 @@
"\eOF": end-of-line
"\eOd": backward-word
"\eOc": forward-word
+
+# Make sideways arrows jump words
+#"\e[D": backward-word
+#"\e[C": forward-word

==== //sgl/grimoires/devel/libs/readline/etc/profile.d/readline.sh#2 (xtext)
====

@@ -1,6 +1,7 @@
#!/bin/bash
+# If user has no local inputrc file, use global file if it exists

-if [ ! -e $HOME/.inputrc ] &&
- [ -e /etc/inputrc ]; then
+if [[ ! -f $HOME/.inputrc ]] &&
+ [[ -f /etc/inputrc ]]; then
export INPUTRC=/etc/inputrc
fi



  • [SM-Commit] PERFORCE change 79439 by Juuso Alasuutari for review, Perforce Review Daemon, 05/17/2006

Archive powered by MHonArc 2.6.24.

Top of Page