summaryrefslogtreecommitdiff
path: root/cider-popup.el
diff options
context:
space:
mode:
authorg12l <gauthier.schall@telecom-bretagne.eu>2016-01-20 16:56:31 +0100
committerg12l <gauthier.schall@telecom-bretagne.eu>2016-01-21 11:03:26 +0100
commit63e85788a64f17d093fb91ed3931150c39f024d5 (patch)
tree1b26894dba99a832c81554687d6e8476abc2d52e /cider-popup.el
parent2234a621165e750364d3181ca63d4d4ce3f800ee (diff)
Fix checkdoc errors for cider-popup.el
Diffstat (limited to 'cider-popup.el')
-rw-r--r--cider-popup.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/cider-popup.el b/cider-popup.el
index d5fc5a94..800ba4b4 100644
--- a/cider-popup.el
+++ b/cider-popup.el
@@ -71,7 +71,8 @@ If SELECT is non-nil, select the BUFFER."
buffer)
(defun cider-popup-buffer-quit (&optional kill)
- "Quit the current (temp) window and bury its buffer using `quit-restore-window'.
+ "Quit the current (temp) window.
+Bury its buffer using `quit-restore-window'.
If prefix argument KILL is non-nil, kill the buffer instead of burying it."
(interactive)
(quit-restore-window (selected-window) (if kill 'kill 'append)))
@@ -101,7 +102,7 @@ and automatically removed when killed."
(current-buffer)))
(defun cider-emit-into-popup-buffer (buffer value &optional face)
- "Emit into BUFFER the provided VALUE."
+ "Emit into BUFFER the provided VALUE optionally using FACE."
;; Long string output renders emacs unresponsive and users might intentionally
;; kill the frozen popup buffer. Therefore, we don't re-create the buffer and
;; silently ignore the output.
@@ -123,4 +124,5 @@ and automatically removed when killed."
(when moving (goto-char cider-popup-output-marker))))))
(provide 'cider-popup)
+
;;; cider-popup.el ends here