From 8a814e9be03bf7f24b4242572ad9bbf97c65c034 Mon Sep 17 00:00:00 2001 From: Chad Walstrom Date: Mon, 27 Jul 2020 12:44:26 -0500 Subject: [PATCH 1/2] Correct misspelled function. Fixes #181 --- inf-clojure.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inf-clojure.el b/inf-clojure.el index de656d8..5d7f71c 100644 --- a/inf-clojure.el +++ b/inf-clojure.el @@ -387,7 +387,7 @@ comments." (concat s "\n"))) lines " "))) -(defun inf-clojure--sanitinze-command (command) +(defun inf-clojure--sanitize-command (command) "Sanitize COMMAND for sending it to a process. An example of things that this function does is to add a final newline at the end of the form. Return an empty string if the From 5e36c8b3f69bb2d37654f43f0769b880b3a527fd Mon Sep 17 00:00:00 2001 From: Chad Walstrom Date: Mon, 27 Jul 2020 12:52:12 -0500 Subject: [PATCH 2/2] Fixed two checkdoc warnings --- inf-clojure.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inf-clojure.el b/inf-clojure.el index 5d7f71c..f12d2bd 100644 --- a/inf-clojure.el +++ b/inf-clojure.el @@ -353,14 +353,14 @@ number (e.g. (\"localhost\" . 5555))." (defcustom inf-clojure-custom-startup nil - "Form to be used to start inf-clojure. + "Form to be used to start `inf-clojure'. Can be a cons pair of (host . port) where host is a string and port is an integer, or a string to startup an interpreter like \"planck\".") (defcustom inf-clojure-custom-repl-type nil - "REPL type to use for inf-clojure process buffer. + "REPL type to use for `inf-clojure' process buffer. Should be a symbol that is a key in `inf-clojure-repl-features'." :package-version '(inf-clojure . "3.0.0") :type '(choice (const :tag "clojure" clojure)