diff options
| author | Richard M. Stallman | 2003-04-21 01:35:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-04-21 01:35:20 +0000 |
| commit | 1a534b89fc2f334d9e32b0009cd7922b546a3fed (patch) | |
| tree | d6acbfc328de0790178f42b5c1ee35678fe61289 | |
| parent | 160181b88406a54a60e84d34a09437c4107b1244 (diff) | |
| download | emacs-1a534b89fc2f334d9e32b0009cd7922b546a3fed.tar.gz emacs-1a534b89fc2f334d9e32b0009cd7922b546a3fed.zip | |
(kill-line): Doc fix.
| -rw-r--r-- | lisp/simple.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index a5fead803d9..4726dffecd7 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -2145,7 +2145,9 @@ use \\[append-next-kill] before \\[kill-line]. | |||
| 2145 | 2145 | ||
| 2146 | If the buffer is read-only, Emacs will beep and refrain from deleting | 2146 | If the buffer is read-only, Emacs will beep and refrain from deleting |
| 2147 | the line, but put the line in the kill ring anyway. This means that | 2147 | the line, but put the line in the kill ring anyway. This means that |
| 2148 | you can use this command to copy text from a read-only buffer." | 2148 | you can use this command to copy text from a read-only buffer. |
| 2149 | \(If the variable `kill-read-only-ok' is non-nil, then this won't | ||
| 2150 | even beep.)" | ||
| 2149 | (interactive "P") | 2151 | (interactive "P") |
| 2150 | (kill-region (point) | 2152 | (kill-region (point) |
| 2151 | ;; It is better to move point to the other end of the kill | 2153 | ;; It is better to move point to the other end of the kill |