summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-java/jruby/files/jruby-0.9.8-old_jline.patch')
-rw-r--r--dev-java/jruby/files/jruby-0.9.8-old_jline.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-java/jruby/files/jruby-0.9.8-old_jline.patch b/dev-java/jruby/files/jruby-0.9.8-old_jline.patch
deleted file mode 100644
index ec0fd57bd88a..000000000000
--- a/dev-java/jruby/files/jruby-0.9.8-old_jline.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Only in jruby-0.9.8-patched/src/org/jruby/ext: .Readline.java.swp
-diff -ru jruby-0.9.8/src/org/jruby/ext/Readline.java jruby-0.9.8-patched/src/org/jruby/ext/Readline.java
---- jruby-0.9.8/src/org/jruby/ext/Readline.java 2007-03-05 18:42:13.000000000 -0500
-+++ jruby-0.9.8-patched/src/org/jruby/ext/Readline.java 2007-03-07 21:59:00.000000000 -0500
-@@ -85,9 +85,9 @@
- protected static void initReadline() throws IOException {
- readline = new ConsoleReader();
- readline.setUseHistory(false);
-- readline.setUsePagination(true);
-+ //readline.setUsePagination(true);
- readline.setBellEnabled(false);
-- ((CandidateListCompletionHandler) readline.getCompletionHandler()).setAlwaysIncludeNewline(false);
-+ //((CandidateListCompletionHandler) readline.getCompletionHandler()).setAlwaysIncludeNewline(false);
- if (currentCompletor == null)
- currentCompletor = new RubyFileNameCompletor();
- readline.addCompletor(currentCompletor);