Function: cider-test--string-contains-newline

cider-test--string-contains-newline is a byte-compiled function defined in cider-test.el.

Signature

(cider-test--string-contains-newline INPUT-STRING)

Documentation

Return non-nil if INPUT-STRING has an escaped newline.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-test.el
(defun cider-test--string-contains-newline (input-string)
  "Return non-nil if INPUT-STRING has an escaped newline."
  (when (stringp input-string)
    (and (string-match-p "\\\\n" input-string)
         t)))