Function: dcl-delete-chars
dcl-delete-chars is a byte-compiled function defined in
dcl-mode.el.gz.
Signature
(dcl-delete-chars CHARS)
Documentation
Delete all characters in the set CHARS around point.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
;;;---------------------------------------------------------------------------
(defun dcl-delete-chars (chars)
"Delete all characters in the set CHARS around point."
(skip-chars-backward chars)
(delete-region (point) (progn (skip-chars-forward chars) (point))))