Function: woman-delete-following-space
woman-delete-following-space is a byte-compiled function defined in
woman.el.gz.
Signature
(woman-delete-following-space)
Documentation
Delete all spaces and tabs FOLLOWING point (cf. delete-horizontal-space).
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defsubst woman-delete-following-space ()
"Delete all spaces and tabs FOLLOWING point (cf. `delete-horizontal-space')."
;; cf. delete-horizontal-space in simple.el:
(delete-region (point) (progn (skip-chars-forward " \t") (point))))