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

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

[nongnu] elpa/forth-mode 38f0ccbfc8 027/153: Rename to run-forth, forth-


From: ELPA Syncer
Subject: [nongnu] elpa/forth-mode 38f0ccbfc8 027/153: Rename to run-forth, forth-ensure, and forth-parse.el.
Date: Sat, 29 Jan 2022 08:02:14 -0500 (EST)

branch: elpa/forth-mode
commit 38f0ccbfc8f87a3b8e28a566391a730f5e70cf20
Author: Lars Brinkhoff <lars.brinkhoff@delphi.com>
Commit: Lars Brinkhoff <lars.brinkhoff@delphi.com>

    Rename to run-forth, forth-ensure, and forth-parse.el.
---
 forth-interaction-mode.el  | 10 +++++-----
 parse.el => forth-parse.el |  0
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/forth-interaction-mode.el b/forth-interaction-mode.el
index 8f80f60baa..224ef58cab 100644
--- a/forth-interaction-mode.el
+++ b/forth-interaction-mode.el
@@ -38,7 +38,7 @@
 (defvar forth-executable "gforth")
 
 ;;;###autoload
-(defun forth ()
+(defun run-forth ()
   "Start an interactive forth session."
   (interactive)
   (let ((buffer (get-buffer-create "*forth*")))
@@ -56,16 +56,16 @@
 (defun forth-restart ()
   (interactive)
   (forth-kill)
-  (forth))
+  (run-forth))
 
-(defun ensure-forth ()
+(defun forth-ensure ()
   (unless forth-interaction-buffer
-    (forth))
+    (run-forth))
   (get-buffer-process forth-interaction-buffer))
 
 ;;;###autoload
 (defun forth-interaction-send (string &optional callback)
-  (let ((proc (ensure-forth)))
+  (let ((proc (forth-ensure)))
     (setq forth-interaction-callback callback)
     (comint-send-string proc string)
     (comint-send-string proc "\n")))
diff --git a/parse.el b/forth-parse.el
similarity index 100%
rename from parse.el
rename to forth-parse.el



reply via email to

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