Function: editorconfig--delete-trailing-whitespace

editorconfig--delete-trailing-whitespace is a byte-compiled function defined in editorconfig.el.gz.

Signature

(editorconfig--delete-trailing-whitespace)

Documentation

Call delete-trailing-whitespace unless the buffer is read-only.

Source Code

;; Defined in /usr/src/emacs/lisp/editorconfig.el.gz
(defun editorconfig--delete-trailing-whitespace ()
  "Call `delete-trailing-whitespace' unless the buffer is read-only."
  (unless buffer-read-only (delete-trailing-whitespace)))