aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/dired-x.el6
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 85c68323cfe..358a23450a8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12013-07-25 Glenn Morris <rgm@gnu.org>
2
3 * dired-x.el (dired-mark-extension): Convert comment to doc string.
4
12013-07-25 Juanma Barranquero <lekktu@gmail.com> 52013-07-25 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * desktop.el (desktop--make-frame): Do not pass the `fullscreen' 7 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index ddb632db692..0c432593909 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -331,9 +331,9 @@ See also the functions:
331;; Mark files with some extension. 331;; Mark files with some extension.
332(defun dired-mark-extension (extension &optional marker-char) 332(defun dired-mark-extension (extension &optional marker-char)
333 "Mark all files with a certain EXTENSION for use in later commands. 333 "Mark all files with a certain EXTENSION for use in later commands.
334A `.' is *not* automatically prepended to the string entered." 334A `.' is *not* automatically prepended to the string entered.
335 ;; EXTENSION may also be a list of extensions instead of a single one. 335EXTENSION may also be a list of extensions instead of a single one.
336 ;; Optional MARKER-CHAR is marker to use. 336Optional MARKER-CHAR is marker to use."
337 (interactive "sMarking extension: \nP") 337 (interactive "sMarking extension: \nP")
338 (or (listp extension) 338 (or (listp extension)
339 (setq extension (list extension))) 339 (setq extension (list extension)))