Variable: clojure-thread-all-but-last
clojure-thread-all-but-last is a customizable variable defined in
clojure-mode.el.
Value
nil
Documentation
Non-nil means do not thread the last expression.
This means that clojure-thread-first-all and
clojure-thread-last-all not thread the deepest sexp inside the
current sexp.
This variable was added, or its default value changed, in clojure-mode version 5.4.0.
Source Code
;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Refactoring support
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Threading macros related
(defcustom clojure-thread-all-but-last nil
"Non-nil means do not thread the last expression.
This means that `clojure-thread-first-all' and
`clojure-thread-last-all' not thread the deepest sexp inside the
current sexp."
:package-version '(clojure-mode . "5.4.0")
:safe #'booleanp
:type 'boolean)