[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/inf-ruby 41e5ed3a88 229/265: run-ruby: Update for the late
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/inf-ruby 41e5ed3a88 229/265: run-ruby: Update for the latest change |
Date: |
Sat, 9 Jul 2022 21:59:28 -0400 (EDT) |
branch: elpa/inf-ruby
commit 41e5ed3a886fca56990486f1987bb3bae0dbd54b
Author: Dmitry Gutov <dgutov@yandex.ru>
Commit: Dmitry Gutov <dgutov@yandex.ru>
run-ruby: Update for the latest change
And simplify 'inf-ruby'.
Fixes #131
---
inf-ruby.el | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/inf-ruby.el b/inf-ruby.el
index 8a21039c89..288cc1efd4 100755
--- a/inf-ruby.el
+++ b/inf-ruby.el
@@ -351,8 +351,6 @@ to that buffer. Otherwise create a new buffer."
(setq impl (or impl "ruby"))
(let ((command (cdr (assoc impl inf-ruby-implementations))))
- (when (functionp command)
- (setq command (funcall command)))
(run-ruby command impl)))
;;;###autoload
@@ -376,8 +374,13 @@ Type \\[describe-mode] in the process buffer for the list
of commands."
;; We're keeping both it and `inf-ruby' for backward compatibility.
(interactive)
(run-ruby-or-pop-to-buffer
- (or command (cdr (assoc inf-ruby-default-implementation
- inf-ruby-implementations)))
+ (let ((command
+ (or command
+ (cdr (assoc inf-ruby-default-implementation
+ inf-ruby-implementations)))))
+ (if (functionp command)
+ (funcall command)
+ command))
(or name "ruby")
(or (inf-ruby-buffer)
inf-ruby-buffer)))
- [nongnu] elpa/inf-ruby 700c453610 181/265: Merge pull request #91 from asok/multi, (continued)
- [nongnu] elpa/inf-ruby 700c453610 181/265: Merge pull request #91 from asok/multi, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 54eb6bf6d6 185/265: Bump the version, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 57710da5c8 214/265: inf-ruby-console-gem: Use '--prompt default --noreadline', ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby c2bb2f7186 215/265: Add ruby-send-{buffer, line}-and-go commands, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 6bfa7c9411 217/265: Add `ansi-color-process-output` to comint output functions, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby d2cc45ac1a 221/265: Bump the version, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 4a7ed23971 222/265: Revert "Add `ansi-color-process-output` to comint output functions", ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 928b1dd2c2 223/265: Merge pull request #123 from nonsequitur/revert-118-master, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby b228a7d9af 225/265: inf-ruby-error-regexp-alist: bol-anchor for better performance, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 1b89400e6f 227/265: Add '--nomultiline' with newer IRB versions, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 41e5ed3a88 229/265: run-ruby: Update for the latest change,
ELPA Syncer <=
- [nongnu] elpa/inf-ruby 6291121307 236/265: It is a triangle, right?, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 2ec94b4b33 237/265: Exclude --noreadline when Irb version is > 1.2.0, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby bb7d4ca086 240/265: Merge pull request #141 from sharmanr/send-definition, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 1fc972ecda 243/265: Merge pull request #142 from PuercoPop/patch-1, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby c6990a60c7 244/265: Implement inf-ruby-reuse-older-buffers, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby f484fa82cc 247/265: ruby-send-last-stmt: New command, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 6943bf1e78 254/265: Apply code review - print evaluation as default, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 3940b91ac5 252/265: Create load current ruby file fn and key binding, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby c49b3d360a 253/265: Apply code review - remove unecessary line, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby bae94383d5 256/265: Stop wrapping the evaluation result in quotes, ELPA Syncer, 2022/07/09