From: Richard M. Stallman Date: Sat, 17 Feb 2007 23:06:12 +0000 (+0000) Subject: (kill-line): Doc fix. X-Git-Tag: emacs-pretest-22.0.94~92 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=602157ab37847e9b9da58453ace558811d121ea6;p=emacs.git (kill-line): Doc fix. --- diff --git a/lisp/simple.el b/lisp/simple.el index 6f4f5eb4073..44408c4f427 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2836,12 +2836,12 @@ When calling from a program, nil means \"no arg\", a number counts as a prefix arg. To kill a whole line, when point is not at the beginning, type \ -\\[beginning-of-line] \\[kill-line] \\[kill-line]. +\\[move-beginning-of-line] \\[kill-line] \\[kill-line]. If `kill-whole-line' is non-nil, then this command kills the whole line including its terminating newline, when used at the beginning of a line with no argument. As a consequence, you can always kill a whole line -by typing \\[beginning-of-line] \\[kill-line]. +by typing \\[move-beginning-of-line] \\[kill-line]. If you want to append the killed line to the last killed text, use \\[append-next-kill] before \\[kill-line].