Function: delete-all-space
delete-all-space is an interactive and byte-compiled function defined
in simple.el.gz.
Signature
(delete-all-space &optional BACKWARD-ONLY)
Documentation
Delete all spaces, tabs, and newlines around point.
If BACKWARD-ONLY is non-nil, delete them only before point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun delete-all-space (&optional backward-only)
"Delete all spaces, tabs, and newlines around point.
If BACKWARD-ONLY is non-nil, delete them only before point."
(interactive "*P")
(delete-space--internal " \t\r\n" backward-only))