diff options
| author | Glenn Morris | 2013-07-25 00:10:56 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-07-25 00:10:56 -0700 |
| commit | 6ccb9cab43613632ece4f62d9ee28d694bc1d666 (patch) | |
| tree | 7d7cad1ad57fcea32f5499bc3131e4392fa56adc /lisp | |
| parent | ef75383cd2b764f8df0b84f780adfe0bd552457c (diff) | |
| parent | ff62aabc622fdf35aaa878fd284f446de85fc5fd (diff) | |
| download | emacs-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/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/dired-x.el | 6 |
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 @@ | |||
| 1 | 2013-07-25 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * dired-x.el (dired-mark-extension): Convert comment to doc string. | ||
| 4 | |||
| 1 | 2013-07-25 Juanma Barranquero <lekktu@gmail.com> | 5 | 2013-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. |
| 334 | A `.' is *not* automatically prepended to the string entered." | 334 | A `.' is *not* automatically prepended to the string entered. |
| 335 | ;; EXTENSION may also be a list of extensions instead of a single one. | 335 | EXTENSION may also be a list of extensions instead of a single one. |
| 336 | ;; Optional MARKER-CHAR is marker to use. | 336 | Optional 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))) |