diff options
| author | Lars Magne Ingebrigtsen | 2011-07-06 20:26:29 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-06 20:26:29 +0200 |
| commit | d67f7e1fbfa35b715ebda809249f2830eded9fc0 (patch) | |
| tree | 1e614a3029eb7f68b7c23ccc543accd2d425bf1a | |
| parent | fe204702284fb69d07b35a0e3912fe939cf30ff8 (diff) | |
| download | emacs-d67f7e1fbfa35b715ebda809249f2830eded9fc0.tar.gz emacs-d67f7e1fbfa35b715ebda809249f2830eded9fc0.zip | |
* dired-aux.el (dired-kill-line): Add a doc string.
Fixes: debbugs:957
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/dired-aux.el | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 68533f8e89e..57b39b5caa2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1 | 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * dired-aux.el (dired-kill-line): Add a doc string. | ||
| 4 | |||
| 3 | * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults | 5 | * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults |
| 4 | to "\\sw\\|\\s_" (bug#358). | 6 | to "\\sw\\|\\s_" (bug#358). |
| 5 | 7 | ||
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index 9e3e3460fa2..5ab4146383b 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el | |||
| @@ -699,6 +699,9 @@ can be produced by `dired-get-marked-files', for example." | |||
| 699 | ;; Commands that delete or redisplay part of the dired buffer. | 699 | ;; Commands that delete or redisplay part of the dired buffer. |
| 700 | 700 | ||
| 701 | (defun dired-kill-line (&optional arg) | 701 | (defun dired-kill-line (&optional arg) |
| 702 | "Kill the current line (not the files). | ||
| 703 | With a prefix argument, kill that many lines starting with the current line. | ||
| 704 | \(A negative argument kills backward.)" | ||
| 702 | (interactive "P") | 705 | (interactive "P") |
| 703 | (setq arg (prefix-numeric-value arg)) | 706 | (setq arg (prefix-numeric-value arg)) |
| 704 | (let (buffer-read-only file) | 707 | (let (buffer-read-only file) |