From 198c036f51c4c8f60172904b6fc1cbd4c540bbfc Mon Sep 17 00:00:00 2001 From: Nathaniel Nicandro Date: Sun, 22 Sep 2019 10:07:34 -0500 Subject: [PATCH] jupyter-org-indent-inserted-region: Reduce verbosity of doc --- jupyter-org-client.el | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/jupyter-org-client.el b/jupyter-org-client.el index 265ef73..63b895a 100644 --- a/jupyter-org-client.el +++ b/jupyter-org-client.el @@ -1428,13 +1428,7 @@ of the fixed-width element and RESULT concatenated together." (defmacro jupyter-org-indent-inserted-region (indentation &rest body) "Indent the region inserted by BODY using INDENTATION. -INDENTATION is a form to be evaluated for the number of leading -indentation characters. If INDENTATION is nil, it defaults to -`current-indentation'. - -BODY is wrapped with a call to `jupyter-with-insertion-bounds' -before evaluation and whatever text is inserted into the buffer -after evaluation is indented by INDENTATION." +If INDENTATION is nil, it defaults to `current-indentation'." (declare (indent 1)) (let ((indent (make-symbol "indent"))) `(let ((,indent ,(or indentation '(current-indentation))))