diff options
| author | Juri Linkov | 2016-06-06 00:16:17 +0300 |
|---|---|---|
| committer | Juri Linkov | 2016-06-06 00:16:17 +0300 |
| commit | efde23dcdd110ae9d85449a04a66408d5e8a2b23 (patch) | |
| tree | efd17db5e11b3881e1a19be094b250d50bee7289 | |
| parent | 6627dd7c9405670db99b792f782aa94c5da118a9 (diff) | |
| download | emacs-efde23dcdd110ae9d85449a04a66408d5e8a2b23.tar.gz emacs-efde23dcdd110ae9d85449a04a66408d5e8a2b23.zip | |
* lisp/wdired.el (wdired-next-line, wdired-previous-line): Add "^"
to interactive spec to handle shift-selection. (Bug#23642)
| -rw-r--r-- | lisp/wdired.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/wdired.el b/lisp/wdired.el index 2e68bec6fd7..5b23f843e0b 100644 --- a/lisp/wdired.el +++ b/lisp/wdired.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; wdired.el --- Rename files editing their names in dired buffers | 1 | ;;; wdired.el --- Rename files editing their names in dired buffers -*- coding: utf-8; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2004-2016 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2004-2016 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -590,7 +590,7 @@ Optional arguments are ignored." | |||
| 590 | "Move down lines then position at filename or the current column. | 590 | "Move down lines then position at filename or the current column. |
| 591 | See `wdired-use-dired-vertical-movement'. Optional prefix ARG | 591 | See `wdired-use-dired-vertical-movement'. Optional prefix ARG |
| 592 | says how many lines to move; default is one line." | 592 | says how many lines to move; default is one line." |
| 593 | (interactive "p") | 593 | (interactive "^p") |
| 594 | (with-no-warnings (next-line arg)) | 594 | (with-no-warnings (next-line arg)) |
| 595 | (if (or (eq wdired-use-dired-vertical-movement t) | 595 | (if (or (eq wdired-use-dired-vertical-movement t) |
| 596 | (and wdired-use-dired-vertical-movement | 596 | (and wdired-use-dired-vertical-movement |
| @@ -603,7 +603,7 @@ says how many lines to move; default is one line." | |||
| 603 | "Move up lines then position at filename or the current column. | 603 | "Move up lines then position at filename or the current column. |
| 604 | See `wdired-use-dired-vertical-movement'. Optional prefix ARG | 604 | See `wdired-use-dired-vertical-movement'. Optional prefix ARG |
| 605 | says how many lines to move; default is one line." | 605 | says how many lines to move; default is one line." |
| 606 | (interactive "p") | 606 | (interactive "^p") |
| 607 | (with-no-warnings (previous-line arg)) | 607 | (with-no-warnings (previous-line arg)) |
| 608 | (if (or (eq wdired-use-dired-vertical-movement t) | 608 | (if (or (eq wdired-use-dired-vertical-movement t) |
| 609 | (and wdired-use-dired-vertical-movement | 609 | (and wdired-use-dired-vertical-movement |