Function: clojure--beginning-of-current-let-binding

clojure--beginning-of-current-let-binding is a byte-compiled function defined in clojure-mode.el.

Signature

(clojure--beginning-of-current-let-binding)

Documentation

Move before the bound name of the current binding.

Assume that point is in the binding form of a let.

Source Code

;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
(defun clojure--beginning-of-current-let-binding ()
  "Move before the bound name of the current binding.
Assume that point is in the binding form of a let."
  (let ((current-point (point)))
    (clojure--goto-let)
    (search-forward "[")
    (forward-char)
    (while (> current-point (point))
      (forward-sexp))
    (backward-sexp 2)))