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

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

[nongnu] elpa/inf-clojure a64717d 053/313: Fix a few docstrings


From: ELPA Syncer
Subject: [nongnu] elpa/inf-clojure a64717d 053/313: Fix a few docstrings
Date: Wed, 11 Aug 2021 09:59:45 -0400 (EDT)

branch: elpa/inf-clojure
commit a64717db509175b2295acd73a222fefbdf8bd2cf
Author: Bozhidar Batsov <bozhidar@batsov.com>
Commit: Bozhidar Batsov <bozhidar@batsov.com>

    Fix a few docstrings
---
 inf-clojure.el | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/inf-clojure.el b/inf-clojure.el
index 6bf4604..5c2526e 100644
--- a/inf-clojure.el
+++ b/inf-clojure.el
@@ -321,19 +321,19 @@ of `inf-clojure-program').  Runs the hooks from
 
 (defun inf-clojure-eval-region (start end &optional and-go)
   "Send the current region to the inferior Clojure process.
-Prefix argument means switch to the Clojure buffer afterwards."
+Prefix argument AND-GO means switch to the Clojure buffer afterwards."
   (interactive "r\nP")
   (comint-send-region (inf-clojure-proc) start end)
   (comint-send-string (inf-clojure-proc) "\n")
   (if and-go (inf-clojure-switch-to-repl t)))
 
-(defun inf-clojure-eval-string (string)
-  "Send the string to the inferior Clojure process to be executed."
-  (comint-send-string (inf-clojure-proc) (concat string "\n")))
+(defun inf-clojure-eval-string (code)
+  "Send the string CODE to the inferior Clojure process to be executed."
+  (comint-send-string (inf-clojure-proc) (concat code "\n")))
 
 (defun inf-clojure-eval-defun (&optional and-go)
   "Send the current defun to the inferior Clojure process.
-Prefix argument means switch to the Clojure buffer afterwards."
+Prefix argument AND-GO means switch to the Clojure buffer afterwards."
   (interactive "P")
   (save-excursion
     (end-of-defun)
@@ -344,7 +344,7 @@ Prefix argument means switch to the Clojure buffer 
afterwards."
 
 (defun inf-clojure-eval-buffer (&optional and-go)
   "Send the current buffer to the inferior Clojure process.
-Prefix argument means switch to the Clojure buffer afterwards."
+Prefix argument AND-GO means switch to the Clojure buffer afterwards."
   (interactive "P")
   (save-excursion
     (end-of-buffer)
@@ -355,7 +355,7 @@ Prefix argument means switch to the Clojure buffer 
afterwards."
 
 (defun inf-clojure-eval-last-sexp (&optional and-go)
   "Send the previous sexp to the inferior Clojure process.
-Prefix argument means switch to the Clojure buffer afterwards."
+Prefix argument AND-GO means switch to the Clojure buffer afterwards."
   (interactive "P")
   (inf-clojure-eval-region (save-excursion (backward-sexp) (point)) (point) 
and-go))
 
@@ -369,7 +369,7 @@ Prefix argument means switch to the Clojure buffer 
afterwards."
 
 (defun inf-clojure-switch-to-repl (eob-p)
   "Switch to the inferior Clojure process buffer.
-With argument, positions cursor at end of buffer."
+With prefix argument EOB-P, positions cursor at end of buffer."
   (interactive "P")
   (if (get-buffer-process inf-clojure-buffer)
       (let ((pop-up-frames



reply via email to

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