>>>> "SL" == SL Baur <steve(a)xemacs.org>
writes:
SL> This keyboard has a Remove key that also generates apLineDel like the
SL> IBM PC keyboard. Fans of a function key deleting forwards probably
SL> ought to think about supporting this.
SL> apLineDel not defined.
I propose some variation on this function for binding to apLineDel.
(defun kill-whole-line (count)
"Kill an entire line, or ARG lines if prefix specified"
(interactive "*p")
(beginning-of-line)
(kill-line count))
Martin