diff options
author | Glenn Morris <rgm@gnu.org> | 2013-07-24 00:32:49 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-07-24 00:32:49 -0700 |
commit | 736b5829aef623bbb36e00001af2644edef3c578 (patch) | |
tree | db4b51b0881b0a36a1fae68de300ae26dc057ebc /lisp/dired-x.el | |
parent | 862f1c9c3a172cd704e286964705b06aaf68b7fa (diff) | |
download | emacs-736b5829aef623bbb36e00001af2644edef3c578.tar.gz emacs-736b5829aef623bbb36e00001af2644edef3c578.tar.bz2 emacs-736b5829aef623bbb36e00001af2644edef3c578.zip |
* lisp/dired-x.el (dired-mark-extension): Convert comment to doc string.
Diffstat (limited to 'lisp/dired-x.el')
-rw-r--r-- | lisp/dired-x.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/dired-x.el b/lisp/dired-x.el index 7c0def7f809..4f9213fa5cf 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el @@ -331,9 +331,9 @@ See also the functions: ;; Mark files with some extension. (defun dired-mark-extension (extension &optional marker-char) "Mark all files with a certain EXTENSION for use in later commands. -A `.' is *not* automatically prepended to the string entered." - ;; EXTENSION may also be a list of extensions instead of a single one. - ;; Optional MARKER-CHAR is marker to use. +A `.' is *not* automatically prepended to the string entered. +EXTENSION may also be a list of extensions instead of a single one. +Optional MARKER-CHAR is marker to use." (interactive "sMarking extension: \nP") (or (listp extension) (setq extension (list extension))) |