aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2013-07-25 00:10:56 -0700
committerGlenn Morris2013-07-25 00:10:56 -0700
commit6ccb9cab43613632ece4f62d9ee28d694bc1d666 (patch)
tree7d7cad1ad57fcea32f5499bc3131e4392fa56adc /lisp
parentef75383cd2b764f8df0b84f780adfe0bd552457c (diff)
parentff62aabc622fdf35aaa878fd284f446de85fc5fd (diff)
downloademacs-6ccb9cab43613632ece4f62d9ee28d694bc1d666.tar.gz
emacs-6ccb9cab43613632ece4f62d9ee28d694bc1d666.zip
Merge from emacs-24; up to 2013-01-01T11:02:14Z!rudalics@gmx.at
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)))