diff options
| author | Noam Postavsky | 2016-09-17 13:30:24 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2016-10-21 22:39:37 -0400 |
| commit | 5c2da93015abb2e6746d54e5946dfaa5ede4e685 (patch) | |
| tree | e13f486e73ffd8943bc005866603d8bcf7b852e9 | |
| parent | ad66b3fadb7ae22a4cbb82bb1507c39ceadf3897 (diff) | |
| download | emacs-5c2da93015abb2e6746d54e5946dfaa5ede4e685.tar.gz emacs-5c2da93015abb2e6746d54e5946dfaa5ede4e685.zip | |
Fix kill-line's docstring
* lisp/simple.el (kill-line): The effect of show-trailing-whitespace is
important lines with *no* nonblanks (Bug #16654).
| -rw-r--r-- | lisp/simple.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 67c02665ea1..6d36a88892f 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -4846,8 +4846,8 @@ To kill a whole line, when point is not at the beginning, type \ | |||
| 4846 | \\[move-beginning-of-line] \\[kill-line] \\[kill-line]. | 4846 | \\[move-beginning-of-line] \\[kill-line] \\[kill-line]. |
| 4847 | 4847 | ||
| 4848 | If `show-trailing-whitespace' is non-nil, this command will just | 4848 | If `show-trailing-whitespace' is non-nil, this command will just |
| 4849 | kill the rest of the current line, even if there are only | 4849 | kill the rest of the current line, even if there are no nonblanks |
| 4850 | nonblanks there. | 4850 | there. |
| 4851 | 4851 | ||
| 4852 | If option `kill-whole-line' is non-nil, then this command kills the whole line | 4852 | If option `kill-whole-line' is non-nil, then this command kills the whole line |
| 4853 | including its terminating newline, when used at the beginning of a line | 4853 | including its terminating newline, when used at the beginning of a line |