We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3d3223 commit cb32710Copy full SHA for cb32710
clj-refactor.el
@@ -3362,7 +3362,8 @@ See: https://github.com/clojure-emacs/clj-refactor.el/wiki/cljr-create-fn-from-e
3362
(list "first" "second" "last" "fnext" "nth" "rand-nth"))
3363
3364
(defun cljr--strip-keyword-ns (s)
3365
- (car (s-match "[^/]+$" s)))
+ (when (string-match "[^/]+$" s)
3366
+ (substring s (car (match-data)) (car (cdr (match-data))))))
3367
3368
(defun cljr--guess-param-name (form)
3369
(let* ((prepped-form (cljr--strip-off-semantic-noops
0 commit comments