emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/j-mode 8be1471 51/56: Replaced `insert-string` with `inser


From: ELPA Syncer
Subject: [nongnu] elpa/j-mode 8be1471 51/56: Replaced `insert-string` with `insert`
Date: Sun, 29 Aug 2021 11:20:52 -0400 (EDT)

branch: elpa/j-mode
commit 8be1471a7304135ce9c66984137f3fa8378bdb8d
Author: Andrew Christianson <achristianson@edmunds.com>
Commit: Andrew Christianson <achristianson@edmunds.com>

    Replaced `insert-string` with `insert`
---
 j-console.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/j-console.el b/j-console.el
index 27cc1bb..016650f 100644
--- a/j-console.el
+++ b/j-console.el
@@ -129,7 +129,7 @@ the containing buffer"
         (session (j-console-ensure-session)))
     (pop-to-buffer (process-buffer session))
     (goto-char (point-max))
-    (insert-string (format "\n%s\n" region))
+    (insert (format "\n%s\n" region))
     (comint-send-input)))
 
 (defun j-console-execute-line ()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]