branch: elpa/forth-mode
commit 38f0ccbfc8f87a3b8e28a566391a730f5e70cf20
Author: Lars Brinkhoff <[email protected]>
Commit: Lars Brinkhoff <[email protected]>
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