Function: magit-whitespace-disallowed

magit-whitespace-disallowed is an interactive and byte-compiled function defined in magit-base.el.

Signature

(magit-whitespace-disallowed)

Documentation

Beep to tell the user that whitespace is not allowed.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-base.el
(defun magit-whitespace-disallowed ()
  "Beep to tell the user that whitespace is not allowed."
  (interactive)
  (ding)
  (message "Whitespace isn't allowed here")
  (setq defining-kbd-macro nil)
  (force-mode-line-update))