branch: elpa/raku-mode
commit 8e7ff8d7269d40fb3cc5882f5f3da41857f565de
Author: Matias Linares <[email protected]>
Commit: Matias Linares <[email protected]>

    Rename perl6-repl-other-window to perl6-repl
---
 perl6-repl.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/perl6-repl.el b/perl6-repl.el
index 4d1bd84e76..549c457073 100644
--- a/perl6-repl.el
+++ b/perl6-repl.el
@@ -24,7 +24,7 @@
   (or (file-executable-p perl6-exec-path)
       (executable-find perl6-exec-path)))
 
-(defun perl6-repl-other-window ()
+(defun perl6-repl ()
   "Runs Perl6 in a `term' buffer in another window."
   (interactive)
   (let ((termbuf (apply 'make-term perl6-repl--buffer-name perl6-exec-path 
nil)))
@@ -42,7 +42,7 @@
                   "> "))))
 
 (defun perl6-create-new-repl ()
-  (progn (perl6-repl-other-window)
+  (progn (perl6-repl)
          (while (perl6-repl-ready-p)
            (sit-for 0.1))))
 

Reply via email to