From: Lars Magne Ingebrigtsen Date: Wed, 6 Jul 2011 18:26:29 +0000 (+0200) Subject: * dired-aux.el (dired-kill-line): Add a doc string. X-Git-Tag: emacs-pretest-24.0.90~104^2~461^2~7 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d67f7e1fbfa35b715ebda809249f2830eded9fc0;p=emacs.git * dired-aux.el (dired-kill-line): Add a doc string. Fixes: debbugs:957 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 68533f8e89e..57b39b5caa2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2011-07-06 Lars Magne Ingebrigtsen + * dired-aux.el (dired-kill-line): Add a doc string. + * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults to "\\sw\\|\\s_" (bug#358). 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." ;; Commands that delete or redisplay part of the dired buffer. (defun dired-kill-line (&optional arg) + "Kill the current line (not the files). +With a prefix argument, kill that many lines starting with the current line. +\(A negative argument kills backward.)" (interactive "P") (setq arg (prefix-numeric-value arg)) (let (buffer-read-only file)