Function: nrepl--ensure-fundamental-mode

nrepl--ensure-fundamental-mode is a byte-compiled function defined in nrepl-client.el.

Signature

(nrepl--ensure-fundamental-mode)

Documentation

Enable fundamental-mode if it is not enabled already.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun nrepl--ensure-fundamental-mode ()
  "Enable `fundamental-mode' if it is not enabled already."
  (unless (eq 'fundamental-mode major-mode)
    (fundamental-mode)))