aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman2007-02-17 23:06:12 +0000
committerRichard M. Stallman2007-02-17 23:06:12 +0000
commit602157ab37847e9b9da58453ace558811d121ea6 (patch)
tree7e14cc61fa6eb7f863bfa23f356d779cb7b1acac /lisp
parent4e7a0e25fdff3b3a61e218eb8feaec2bc82266df (diff)
downloademacs-602157ab37847e9b9da58453ace558811d121ea6.tar.gz
emacs-602157ab37847e9b9da58453ace558811d121ea6.zip
(kill-line): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/simple.el4
1 files changed, 2 insertions, 2 deletions
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\",
2836a number counts as a prefix arg. 2836a number counts as a prefix arg.
2837 2837
2838To kill a whole line, when point is not at the beginning, type \ 2838To kill a whole line, when point is not at the beginning, type \
2839\\[beginning-of-line] \\[kill-line] \\[kill-line]. 2839\\[move-beginning-of-line] \\[kill-line] \\[kill-line].
2840 2840
2841If `kill-whole-line' is non-nil, then this command kills the whole line 2841If `kill-whole-line' is non-nil, then this command kills the whole line
2842including its terminating newline, when used at the beginning of a line 2842including its terminating newline, when used at the beginning of a line
2843with no argument. As a consequence, you can always kill a whole line 2843with no argument. As a consequence, you can always kill a whole line
2844by typing \\[beginning-of-line] \\[kill-line]. 2844by typing \\[move-beginning-of-line] \\[kill-line].
2845 2845
2846If you want to append the killed line to the last killed text, 2846If you want to append the killed line to the last killed text,
2847use \\[append-next-kill] before \\[kill-line]. 2847use \\[append-next-kill] before \\[kill-line].