Function: kill-forward-chars
kill-forward-chars is a byte-compiled function defined in
simple.el.gz.
Signature
(kill-forward-chars ARG)
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
;; Some kill commands.
;; Internal subroutine of delete-char
(defun kill-forward-chars (arg)
(if (listp arg) (setq arg (car arg)))
(if (eq arg '-) (setq arg -1))
(kill-region (point) (+ (point) arg)))