branch: elpa/cider
commit c1251c0c7ca22c4277485e67657743a223952c0b
Author: Daniel Skarda <dan.ska...@gmail.com>
Commit: Bozhidar Batsov <bozhi...@batsov.dev>

    cider-eval-ns-form: use "P" instead of "p"
    
    "p" is a number thus always true
---
 cider-eval.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cider-eval.el b/cider-eval.el
index c25fe4768f..3c5c7b547c 100644
--- a/cider-eval.el
+++ b/cider-eval.el
@@ -1333,7 +1333,7 @@ buffer, else display in a popup buffer."
 (defun cider-eval-ns-form (&optional undef-all)
   "Evaluate the current buffer's namespace form.
 When UNDEF-ALL is non-nil, unmap all symbols and aliases first."
-  (interactive "p")
+  (interactive "P")
   (when (clojure-find-ns)
     (save-excursion
       (goto-char (match-beginning 0))

Reply via email to