aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/wdired.el6
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.
591See `wdired-use-dired-vertical-movement'. Optional prefix ARG 591See `wdired-use-dired-vertical-movement'. Optional prefix ARG
592says how many lines to move; default is one line." 592says 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.
604See `wdired-use-dired-vertical-movement'. Optional prefix ARG 604See `wdired-use-dired-vertical-movement'. Optional prefix ARG
605says how many lines to move; default is one line." 605says 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