2021-03-19 23:04:27 +00:00
|
|
|
;;; wdired.el --- Rename files editing their names in dired buffers -*- coding: utf-8; lexical-binding: t; -*-
|
2004-04-23 20:57:46 +00:00
|
|
|
|
2022-01-01 07:45:51 +00:00
|
|
|
;; Copyright (C) 2004-2022 Free Software Foundation, Inc.
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;; Filename: wdired.el
|
2013-03-05 17:13:01 +00:00
|
|
|
;; Author: Juan León Lahoz García <juanleon1@gmail.com>
|
2020-03-21 01:46:53 +00:00
|
|
|
;; Old-Version: 2.0
|
2004-04-23 20:57:46 +00:00
|
|
|
;; Keywords: dired, environment, files, renaming
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2004-04-23 20:57:46 +00:00
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; wdired.el (the "w" is for writable) provides an alternative way of
|
|
|
|
;; renaming files.
|
|
|
|
;;
|
2021-01-28 18:21:41 +00:00
|
|
|
;; Have you ever wanted to use C-x r t (string-rectangle), M-%
|
2006-02-07 17:30:10 +00:00
|
|
|
;; (query-replace), M-c (capitalize-word), etc... to change the name of
|
2021-01-28 18:21:41 +00:00
|
|
|
;; the files in a "dired" buffer? Now you can do this. All the power
|
|
|
|
;; of Emacs commands are available when renaming files!
|
2006-02-07 17:30:10 +00:00
|
|
|
;;
|
2011-11-24 01:58:14 +00:00
|
|
|
;; This package provides a function that makes the filenames of a
|
2004-04-23 20:57:46 +00:00
|
|
|
;; dired buffer editable, by changing the buffer mode (which inhibits
|
2021-01-28 18:21:41 +00:00
|
|
|
;; all of the commands of dired mode). Here you can edit the names of
|
2004-04-23 20:57:46 +00:00
|
|
|
;; one or more files and directories, and when you press C-c C-c, the
|
|
|
|
;; renaming takes effect and you are back to dired mode.
|
|
|
|
;;
|
2021-01-28 18:21:41 +00:00
|
|
|
;; Other things you can do with WDired:
|
2004-04-23 20:57:46 +00:00
|
|
|
;;
|
2021-01-28 18:21:41 +00:00
|
|
|
;; - Move files to another directory (by typing their path,
|
2004-04-23 20:57:46 +00:00
|
|
|
;; absolute or relative, as a part of the new filename).
|
|
|
|
;;
|
2021-01-28 18:21:41 +00:00
|
|
|
;; - Change the target of symbolic links.
|
2004-04-23 20:57:46 +00:00
|
|
|
;;
|
2021-01-28 18:21:41 +00:00
|
|
|
;; - Change the permission bits of the filenames (in systems with a
|
2022-08-25 15:11:05 +00:00
|
|
|
;; working unix-alike "chmod"). See and customize the variable
|
|
|
|
;; `wdired-allow-to-change-permissions'. To change a single char
|
|
|
|
;; (toggling between its two more usual values) you can press the
|
|
|
|
;; space bar over it or left-click the mouse. To set any char to a
|
|
|
|
;; specific value (this includes the SUID, SGID and STI bits) you
|
2005-04-11 19:01:31 +00:00
|
|
|
;; can use the key labeled as the letter you want. Please note that
|
2004-04-23 20:57:46 +00:00
|
|
|
;; permissions of the links cannot be changed in that way, because
|
|
|
|
;; the change would affect to their targets, and this would not be
|
|
|
|
;; WYSIWYG :-).
|
|
|
|
;;
|
2021-01-28 18:21:41 +00:00
|
|
|
;; - Mark files for deletion, by deleting their whole filename.
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;;; Usage:
|
|
|
|
|
2011-05-09 17:47:01 +00:00
|
|
|
;; You can edit the names of the files by typing C-x C-q or by
|
|
|
|
;; executing M-x wdired-change-to-wdired-mode. Use C-c C-c when
|
|
|
|
;; finished or C-c C-k to abort. While editing filenames, a new
|
|
|
|
;; submenu "WDired" is available at top level. You can customize the
|
|
|
|
;; behavior of this package from this menu.
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;;; Change Log:
|
|
|
|
|
2021-01-28 18:06:18 +00:00
|
|
|
;; Previous versions with complete changelogs were posted to
|
|
|
|
;; gnu.emacs.sources.
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2006-02-07 17:30:10 +00:00
|
|
|
(require 'dired)
|
|
|
|
(autoload 'dired-do-create-files-regexp "dired-aux")
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
(defgroup wdired nil
|
|
|
|
"Mode to rename files by editing their names in dired buffers."
|
|
|
|
:group 'dired)
|
|
|
|
|
|
|
|
(defcustom wdired-use-interactive-rename nil
|
2006-02-07 17:30:10 +00:00
|
|
|
"If non-nil, WDired requires confirmation before actually renaming files.
|
2005-04-11 19:01:31 +00:00
|
|
|
If nil, WDired doesn't require confirmation to change the file names,
|
|
|
|
and the variable `wdired-confirm-overwrite' controls whether it is ok
|
|
|
|
to overwrite files without asking."
|
2021-03-19 23:04:27 +00:00
|
|
|
:type 'boolean)
|
2004-04-23 20:57:46 +00:00
|
|
|
|
2005-04-11 19:01:31 +00:00
|
|
|
(defcustom wdired-confirm-overwrite t
|
2006-02-07 17:30:10 +00:00
|
|
|
"If nil the renames can overwrite files without asking.
|
2005-04-11 19:01:31 +00:00
|
|
|
This variable has no effect at all if `wdired-use-interactive-rename'
|
|
|
|
is not nil."
|
2021-03-19 23:04:27 +00:00
|
|
|
:type 'boolean)
|
2004-04-23 20:57:46 +00:00
|
|
|
|
2005-04-11 19:01:31 +00:00
|
|
|
(defcustom wdired-use-dired-vertical-movement nil
|
2006-02-07 17:30:10 +00:00
|
|
|
"If t, the \"up\" and \"down\" movement works as in Dired mode.
|
2004-04-23 20:57:46 +00:00
|
|
|
That is, always move the point to the beginning of the filename at line.
|
|
|
|
|
2007-11-05 11:51:33 +00:00
|
|
|
If `sometimes', only move to the beginning of filename if the point is
|
|
|
|
before it, and `track-eol' is non-nil. This behavior is very handy
|
2004-04-23 20:57:46 +00:00
|
|
|
when editing several filenames.
|
|
|
|
|
|
|
|
If nil, \"up\" and \"down\" movement is done as in any other buffer."
|
|
|
|
:type '(choice (const :tag "As in any other mode" nil)
|
|
|
|
(const :tag "Smart cursor placement" sometimes)
|
2021-03-19 23:04:27 +00:00
|
|
|
(other :tag "As in dired mode" t)))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
(defcustom wdired-allow-to-redirect-links t
|
2006-02-07 17:30:10 +00:00
|
|
|
"If non-nil, the target of the symbolic links are editable.
|
2004-04-23 20:57:46 +00:00
|
|
|
In systems without symbolic links support, this variable has no effect
|
|
|
|
at all."
|
2021-03-19 23:04:27 +00:00
|
|
|
:type 'boolean)
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
(defcustom wdired-allow-to-change-permissions nil
|
2006-02-07 17:30:10 +00:00
|
|
|
"If non-nil, the permissions bits of the files are editable.
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
If t, to change a single bit, put the cursor over it and press the
|
|
|
|
space bar, or left click over it. You can also hit the letter you want
|
|
|
|
to set: if this value is allowed, the character in the buffer will be
|
|
|
|
changed. Anyway, the point is advanced one position, so, for example,
|
2005-04-11 19:01:31 +00:00
|
|
|
you can keep the <x> key pressed to give execution permissions to
|
2004-04-23 20:57:46 +00:00
|
|
|
everybody to that file.
|
|
|
|
|
2008-02-17 00:30:06 +00:00
|
|
|
If `advanced', the bits are freely editable. You can use
|
2004-04-23 20:57:46 +00:00
|
|
|
`string-rectangle', `query-replace', etc. You can put any value (even
|
|
|
|
newlines), but if you want your changes to be useful, you better put a
|
|
|
|
intelligible value.
|
|
|
|
|
2022-08-25 15:11:05 +00:00
|
|
|
The real change of the permissions is done by the external
|
|
|
|
program \"chmod\", which must exist."
|
2004-04-23 20:57:46 +00:00
|
|
|
:type '(choice (const :tag "Not allowed" nil)
|
2004-04-23 22:22:13 +00:00
|
|
|
(const :tag "Toggle/set bits" t)
|
2021-03-19 23:04:27 +00:00
|
|
|
(other :tag "Bits freely editable" advanced)))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
2012-10-27 09:17:14 +00:00
|
|
|
(defcustom wdired-keep-marker-rename t
|
|
|
|
;; Use t as default so that renamed files "take their markers with them".
|
|
|
|
"Controls marking of files renamed in WDired.
|
|
|
|
If t, files keep their previous marks when they are renamed.
|
|
|
|
If a character, renamed files (whether previously marked or not)
|
|
|
|
are afterward marked with that character.
|
|
|
|
This option affects only files renamed by `wdired-finish-edit'.
|
|
|
|
See `dired-keep-marker-rename' if you want to do the same for files
|
|
|
|
renamed by `dired-do-rename' and `dired-do-rename-regexp'."
|
|
|
|
:type '(choice (const :tag "Keep" t)
|
|
|
|
(character :tag "Mark" :value ?R))
|
2021-03-19 23:04:27 +00:00
|
|
|
:version "24.3")
|
2012-10-27 09:17:14 +00:00
|
|
|
|
2016-02-28 04:37:02 +00:00
|
|
|
(defcustom wdired-create-parent-directories t
|
|
|
|
"If non-nil, create parent directories of destination files.
|
|
|
|
If non-nil, when you rename a file to a destination path within a
|
|
|
|
nonexistent directory, wdired will create any parent directories
|
|
|
|
necessary. When nil, attempts to rename a file into a
|
|
|
|
nonexistent directory will fail."
|
2016-11-16 15:39:43 +00:00
|
|
|
:version "26.1"
|
2021-03-19 23:04:27 +00:00
|
|
|
:type 'boolean)
|
2016-02-28 04:37:02 +00:00
|
|
|
|
2004-04-23 22:22:13 +00:00
|
|
|
(defvar wdired-mode-map
|
|
|
|
(let ((map (make-sparse-keymap)))
|
2021-03-19 23:04:27 +00:00
|
|
|
(define-key map "\C-x\C-s" #'wdired-finish-edit)
|
|
|
|
(define-key map "\C-c\C-c" #'wdired-finish-edit)
|
|
|
|
(define-key map "\C-c\C-k" #'wdired-abort-changes)
|
|
|
|
(define-key map "\C-c\C-[" #'wdired-abort-changes)
|
|
|
|
(define-key map "\C-x\C-q" #'wdired-exit)
|
|
|
|
(define-key map "\C-m" #'undefined)
|
|
|
|
(define-key map "\C-j" #'undefined)
|
|
|
|
(define-key map "\C-o" #'undefined)
|
|
|
|
(define-key map [up] #'wdired-previous-line)
|
|
|
|
(define-key map "\C-p" #'wdired-previous-line)
|
|
|
|
(define-key map [down] #'wdired-next-line)
|
|
|
|
(define-key map "\C-n" #'wdired-next-line)
|
|
|
|
(define-key map [remap upcase-word] #'wdired-upcase-word)
|
|
|
|
(define-key map [remap capitalize-word] #'wdired-capitalize-word)
|
|
|
|
(define-key map [remap downcase-word] #'wdired-downcase-word)
|
2021-03-27 07:29:44 +00:00
|
|
|
(define-key map [remap self-insert-command] #'wdired--self-insert)
|
2013-09-18 03:45:54 +00:00
|
|
|
map)
|
|
|
|
"Keymap used in `wdired-mode'.")
|
2004-04-23 22:22:13 +00:00
|
|
|
|
2021-02-23 02:51:12 +00:00
|
|
|
(easy-menu-define wdired-mode-menu wdired-mode-map
|
|
|
|
"Menu for `wdired-mode'."
|
|
|
|
'("WDired"
|
|
|
|
["Commit Changes" wdired-finish-edit]
|
|
|
|
["Abort Changes" wdired-abort-changes
|
|
|
|
:help "Abort changes and return to Dired mode"]
|
|
|
|
"---"
|
|
|
|
["Options" wdired-customize]))
|
|
|
|
|
2004-04-23 22:22:13 +00:00
|
|
|
(defvar wdired-mode-hook nil
|
2005-04-11 19:01:31 +00:00
|
|
|
"Hooks run when changing to WDired mode.")
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;; Local variables (put here to avoid compilation gripes)
|
2021-03-27 07:29:44 +00:00
|
|
|
(defvar wdired--perm-beg) ;; Column where the permission bits start
|
|
|
|
(defvar wdired--perm-end) ;; Column where the permission bits stop
|
|
|
|
(defvar wdired--old-content)
|
|
|
|
(defvar wdired--old-point)
|
|
|
|
(defvar wdired--old-marks)
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
(defun wdired-mode ()
|
2012-08-05 04:19:21 +00:00
|
|
|
"Writable Dired (WDired) mode.
|
2012-06-22 07:30:33 +00:00
|
|
|
\\<wdired-mode-map>
|
2012-08-05 04:19:21 +00:00
|
|
|
In WDired mode, you can edit the names of the files in the
|
|
|
|
buffer, the target of the links, and the permission bits of the
|
|
|
|
files.
|
2004-04-23 20:57:46 +00:00
|
|
|
|
2012-08-05 04:19:21 +00:00
|
|
|
Type \\[wdired-finish-edit] to exit WDired mode, returning to
|
|
|
|
Dired mode, and make your edits \"take effect\" by modifying the
|
|
|
|
file and directory names, link targets, and/or file permissions
|
|
|
|
on disk. If you delete the filename of a file, it is flagged for
|
|
|
|
deletion in the Dired buffer.
|
|
|
|
|
|
|
|
Type \\[wdired-abort-changes] to abort your edits and exit WDired mode.
|
|
|
|
|
|
|
|
Type \\[customize-group] RET wdired to customize WDired behavior.
|
2004-04-23 20:57:46 +00:00
|
|
|
|
2005-04-11 19:01:31 +00:00
|
|
|
The only editable texts in a WDired buffer are filenames,
|
|
|
|
symbolic link targets, and filenames permission."
|
2004-04-23 20:57:46 +00:00
|
|
|
(interactive)
|
|
|
|
(error "This mode can be enabled only by `wdired-change-to-wdired-mode'"))
|
|
|
|
(put 'wdired-mode 'mode-class 'special)
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun wdired-change-to-wdired-mode ()
|
2012-08-05 04:19:21 +00:00
|
|
|
"Put a Dired buffer in Writable Dired (WDired) mode.
|
2005-04-11 19:01:31 +00:00
|
|
|
\\<wdired-mode-map>
|
2012-08-05 04:19:21 +00:00
|
|
|
In WDired mode, you can edit the names of the files in the
|
|
|
|
buffer, the target of the links, and the permission bits of the
|
|
|
|
files. After typing \\[wdired-finish-edit], Emacs modifies the files and
|
|
|
|
directories to reflect your edits.
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
See `wdired-mode'."
|
|
|
|
(interactive)
|
2019-07-13 02:58:27 +00:00
|
|
|
(unless (derived-mode-p 'dired-mode)
|
2012-08-05 04:19:21 +00:00
|
|
|
(error "Not a Dired buffer"))
|
2021-03-27 07:29:44 +00:00
|
|
|
(setq-local wdired--old-content
|
2020-12-09 08:18:04 +00:00
|
|
|
(buffer-substring (point-min) (point-max)))
|
2021-03-27 07:29:44 +00:00
|
|
|
(setq-local wdired--old-marks
|
2020-12-09 08:18:04 +00:00
|
|
|
(dired-remember-marks (point-min) (point-max)))
|
2021-03-27 07:29:44 +00:00
|
|
|
(setq-local wdired--old-point (point))
|
|
|
|
(wdired--set-permission-bounds)
|
2020-12-09 08:18:04 +00:00
|
|
|
(setq-local query-replace-skip-read-only t)
|
2013-08-05 18:05:46 +00:00
|
|
|
(add-function :after-while (local 'isearch-filter-predicate)
|
|
|
|
#'wdired-isearch-filter-read-only)
|
2004-04-23 20:57:46 +00:00
|
|
|
(use-local-map wdired-mode-map)
|
2004-04-23 22:22:13 +00:00
|
|
|
(force-mode-line-update)
|
2004-04-23 20:57:46 +00:00
|
|
|
(setq buffer-read-only nil)
|
|
|
|
(dired-unadvertise default-directory)
|
2021-03-19 23:04:27 +00:00
|
|
|
(add-hook 'kill-buffer-hook #'wdired-check-kill-buffer nil t)
|
2021-03-27 07:29:44 +00:00
|
|
|
(add-hook 'before-change-functions #'wdired--before-change-fn nil t)
|
2021-03-19 23:04:27 +00:00
|
|
|
(add-hook 'after-change-functions #'wdired--restore-properties nil t)
|
2004-04-23 20:57:46 +00:00
|
|
|
(setq major-mode 'wdired-mode)
|
2005-04-11 19:01:31 +00:00
|
|
|
(setq mode-name "Editable Dired")
|
2021-03-23 04:08:24 +00:00
|
|
|
(add-function :override (local 'revert-buffer-function) #'wdired-revert)
|
2004-04-23 20:57:46 +00:00
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
(setq buffer-undo-list nil)
|
2005-05-26 13:24:25 +00:00
|
|
|
(run-mode-hooks 'wdired-mode-hook)
|
2005-12-14 07:46:11 +00:00
|
|
|
(message "%s" (substitute-command-keys
|
|
|
|
"Press \\[wdired-finish-edit] when finished \
|
2005-03-28 01:25:54 +00:00
|
|
|
or \\[wdired-abort-changes] to abort changes")))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
2021-03-27 07:29:44 +00:00
|
|
|
(defun wdired--set-permission-bounds ()
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
2021-03-27 14:54:10 +00:00
|
|
|
(if (not (re-search-forward dired-re-perms nil t 1))
|
|
|
|
(progn
|
|
|
|
(setq-local wdired--perm-beg nil)
|
|
|
|
(setq-local wdired--perm-end nil))
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
;; Add 1 since the first char matched by `dired-re-perms' is the
|
|
|
|
;; one describing the nature of the entry (dir/symlink/...) rather
|
|
|
|
;; than its permissions.
|
|
|
|
(setq-local wdired--perm-beg (1+ (wdired--current-column)))
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
(setq-local wdired--perm-end (wdired--current-column)))))
|
2021-03-27 07:29:44 +00:00
|
|
|
|
|
|
|
(defun wdired--current-column ()
|
|
|
|
(- (point) (line-beginning-position)))
|
|
|
|
|
|
|
|
(defun wdired--point-at-perms-p ()
|
2021-03-27 14:54:10 +00:00
|
|
|
(and wdired--perm-beg
|
|
|
|
(<= wdired--perm-beg (wdired--current-column) wdired--perm-end)))
|
2021-03-27 07:29:44 +00:00
|
|
|
|
|
|
|
(defun wdired--line-preprocessed-p ()
|
|
|
|
(get-text-property (line-beginning-position) 'front-sticky))
|
|
|
|
|
|
|
|
(defun wdired--self-insert ()
|
|
|
|
(interactive)
|
2021-03-27 14:54:10 +00:00
|
|
|
(if (wdired--line-preprocessed-p)
|
|
|
|
(call-interactively 'self-insert-command)
|
|
|
|
(wdired--before-change-fn (point) (point))
|
2021-03-27 18:31:40 +00:00
|
|
|
(let* ((map (get-text-property (point) 'keymap)))
|
|
|
|
(call-interactively (or (if map (lookup-key map (this-command-keys)))
|
|
|
|
#'self-insert-command)))))
|
2021-03-27 07:29:44 +00:00
|
|
|
|
2021-04-20 20:04:36 +00:00
|
|
|
(put 'wdired--self-insert 'delete-selection 'delete-selection-uses-region-p)
|
|
|
|
|
2021-03-27 07:29:44 +00:00
|
|
|
(defun wdired--before-change-fn (beg end)
|
2021-04-23 16:52:22 +00:00
|
|
|
(save-match-data
|
|
|
|
(save-excursion
|
2021-07-19 17:03:28 +00:00
|
|
|
(save-restriction
|
|
|
|
(widen)
|
|
|
|
;; Make sure to process entire lines.
|
|
|
|
(goto-char end)
|
|
|
|
(setq end (line-end-position))
|
|
|
|
(goto-char beg)
|
|
|
|
(forward-line 0)
|
|
|
|
|
|
|
|
(while (< (point) end)
|
|
|
|
(unless (wdired--line-preprocessed-p)
|
|
|
|
(with-silent-modifications
|
|
|
|
(put-text-property (point) (1+ (point)) 'front-sticky t)
|
|
|
|
(wdired--preprocess-files)
|
|
|
|
(when wdired-allow-to-change-permissions
|
|
|
|
(wdired--preprocess-perms))
|
|
|
|
(when (fboundp 'make-symbolic-link)
|
|
|
|
(wdired--preprocess-symlinks))))
|
|
|
|
(forward-line))
|
|
|
|
(when (eobp)
|
2021-04-23 16:52:22 +00:00
|
|
|
(with-silent-modifications
|
2021-07-19 17:03:28 +00:00
|
|
|
;; Is this good enough? Assumes no extra white lines from dired.
|
|
|
|
(put-text-property (1- (point-max)) (point-max) 'read-only t)))))))
|
2021-03-27 07:29:44 +00:00
|
|
|
|
2011-09-09 15:49:00 +00:00
|
|
|
(defun wdired-isearch-filter-read-only (beg end)
|
|
|
|
"Skip matches that have a read-only property."
|
2013-05-27 22:42:11 +00:00
|
|
|
(not (text-property-not-all (min beg end) (max beg end)
|
|
|
|
'read-only nil)))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;; Protect the buffer so only the filenames can be changed, and put
|
|
|
|
;; properties so filenames (old and new) can be easily found.
|
2021-03-27 07:29:44 +00:00
|
|
|
(defun wdired--preprocess-files ()
|
2004-04-23 20:57:46 +00:00
|
|
|
(save-excursion
|
2021-03-27 14:54:10 +00:00
|
|
|
(let ((used-F (dired-check-switches dired-actual-switches "F" "classify"))
|
|
|
|
(beg (point))
|
|
|
|
(filename (dired-get-filename nil t)))
|
|
|
|
(when (and filename
|
|
|
|
(not (member (file-name-nondirectory filename) '("." ".."))))
|
|
|
|
(dired-move-to-filename)
|
|
|
|
;; The rear-nonsticky property below shall ensure that text preceding
|
|
|
|
;; the filename can't be modified.
|
|
|
|
(add-text-properties
|
|
|
|
(1- (point)) (point) `(old-name ,filename rear-nonsticky (read-only)))
|
|
|
|
(put-text-property beg (point) 'read-only t)
|
|
|
|
(dired-move-to-end-of-filename t)
|
|
|
|
(put-text-property (point) (1+ (point)) 'end-name t))
|
|
|
|
(when (and used-F (looking-at "[*/@|=>]$")) (forward-char))
|
|
|
|
(when (save-excursion
|
|
|
|
(and (re-search-backward
|
|
|
|
dired-permission-flags-regexp nil t)
|
|
|
|
(looking-at "l")
|
|
|
|
(search-forward " -> " (line-end-position) t)))
|
|
|
|
(goto-char (line-end-position))))))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;; This code is a copy of some dired-get-filename lines.
|
2016-03-08 20:32:52 +00:00
|
|
|
(defsubst wdired-normalize-filename (file unquotep)
|
|
|
|
(when unquotep
|
2021-05-29 13:35:25 +00:00
|
|
|
;; Unquote names quoted by ls or by dired-insert-directory.
|
|
|
|
;; This code was written using `read' to unquote, because
|
|
|
|
;; it's faster than substituting \007 (4 chars) -> ^G (1
|
|
|
|
;; char) etc. in a lisp loop. Unfortunately, this decision
|
|
|
|
;; has necessitated hacks such as dealing with filenames
|
|
|
|
;; with quotation marks in their names.
|
|
|
|
(while (string-match "\\(?:[^\\]\\|\\`\\)\\(\"\\)" file)
|
|
|
|
(setq file (replace-match "\\\"" nil t file 1)))
|
|
|
|
;; Unescape any spaces escaped by ls -b (bug#10469).
|
|
|
|
;; Other -b quotes, eg \t, \n, work transparently.
|
|
|
|
(if (dired-switches-escape-p dired-actual-switches)
|
|
|
|
(let ((start 0)
|
|
|
|
(rep "")
|
|
|
|
(shift -1))
|
|
|
|
(while (string-match "\\(\\\\\\) " file start)
|
|
|
|
(setq file (replace-match rep nil t file 1)
|
|
|
|
start (+ shift (match-end 0))))))
|
|
|
|
(when (eq system-type 'windows-nt)
|
|
|
|
(save-match-data
|
|
|
|
(let ((start 0))
|
|
|
|
(while (string-match "\\\\" file start)
|
|
|
|
(aset file (match-beginning 0) ?/)
|
|
|
|
(setq start (match-end 0))))))
|
|
|
|
|
|
|
|
;; Hence we don't need to worry about converting `\\' back to `\'.
|
|
|
|
(setq file (read (concat "\"" file "\""))))
|
2004-04-23 20:57:46 +00:00
|
|
|
(and file buffer-file-coding-system
|
|
|
|
(not file-name-coding-system)
|
|
|
|
(not default-file-name-coding-system)
|
|
|
|
(setq file (encode-coding-string file buffer-file-coding-system)))
|
|
|
|
file)
|
|
|
|
|
|
|
|
(defun wdired-get-filename (&optional no-dir old)
|
|
|
|
"Return the filename at line.
|
2004-04-23 22:22:13 +00:00
|
|
|
Similar to `dired-get-filename' but it doesn't rely on regexps. It
|
2005-04-11 19:01:31 +00:00
|
|
|
relies on WDired buffer's properties. Optional arg NO-DIR with value
|
2004-04-23 20:57:46 +00:00
|
|
|
non-nil means don't include directory. Optional arg OLD with value
|
|
|
|
non-nil means return old filename."
|
2004-04-23 22:22:13 +00:00
|
|
|
;; FIXME: Use dired-get-filename's new properties.
|
2020-10-11 04:05:49 +00:00
|
|
|
(let ((used-F (dired-check-switches dired-actual-switches "F" "classify"))
|
|
|
|
beg end file)
|
2021-03-27 14:54:10 +00:00
|
|
|
(wdired--before-change-fn (point) (point))
|
2006-12-09 16:06:53 +00:00
|
|
|
(save-excursion
|
|
|
|
(setq end (line-end-position))
|
|
|
|
(beginning-of-line)
|
|
|
|
(setq beg (next-single-property-change (point) 'old-name nil end))
|
|
|
|
(unless (eq beg end)
|
|
|
|
(if old
|
|
|
|
(setq file (get-text-property beg 'old-name))
|
2008-01-26 17:23:56 +00:00
|
|
|
;; In the following form changed `(1+ beg)' to `beg' so that
|
|
|
|
;; the filename end is found even when the filename is empty.
|
|
|
|
;; Fixes error and spurious newlines when marking files for
|
|
|
|
;; deletion.
|
2020-10-11 04:05:49 +00:00
|
|
|
(setq end (next-single-property-change beg 'end-name nil end))
|
|
|
|
(when (save-excursion
|
|
|
|
(and (re-search-forward
|
|
|
|
dired-permission-flags-regexp nil t)
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
(looking-at "l")
|
2020-12-22 06:36:41 +00:00
|
|
|
(if (and used-F
|
|
|
|
dired-ls-F-marks-symlinks)
|
|
|
|
(re-search-forward "@? -> " (line-end-position) t)
|
|
|
|
(search-forward " -> " (line-end-position) t))))
|
2020-10-11 04:05:49 +00:00
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
(setq end (point)))
|
|
|
|
(when (and used-F
|
|
|
|
(save-excursion
|
|
|
|
(goto-char end)
|
|
|
|
(looking-back "[*/@|=>]$" (1- (point)))))
|
|
|
|
(setq end (1- end)))
|
2006-12-09 16:06:53 +00:00
|
|
|
(setq file (buffer-substring-no-properties (1+ beg) end)))
|
2016-03-08 20:32:52 +00:00
|
|
|
;; Don't unquote the old name, it wasn't quoted in the first place
|
|
|
|
(and file (setq file (wdired-normalize-filename file (not old)))))
|
2006-12-09 16:06:53 +00:00
|
|
|
(if (or no-dir old)
|
2020-10-01 21:25:15 +00:00
|
|
|
(if no-dir (file-relative-name file) file)
|
2006-12-09 16:06:53 +00:00
|
|
|
(and file (> (length file) 0)
|
|
|
|
(concat (dired-current-directory) file))))))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
(defun wdired-change-to-dired-mode ()
|
|
|
|
"Change the mode back to dired."
|
2006-07-28 21:00:15 +00:00
|
|
|
(or (eq major-mode 'wdired-mode)
|
|
|
|
(error "Not a Wdired buffer"))
|
2004-04-23 20:57:46 +00:00
|
|
|
(let ((inhibit-read-only t))
|
2006-12-09 16:06:53 +00:00
|
|
|
(remove-text-properties
|
|
|
|
(point-min) (point-max)
|
|
|
|
'(front-sticky nil rear-nonsticky nil read-only nil keymap nil)))
|
2020-01-28 00:11:59 +00:00
|
|
|
(remove-function (local 'isearch-filter-predicate)
|
|
|
|
#'wdired-isearch-filter-read-only)
|
2004-04-23 20:57:46 +00:00
|
|
|
(use-local-map dired-mode-map)
|
2004-04-23 22:22:13 +00:00
|
|
|
(force-mode-line-update)
|
2004-04-23 20:57:46 +00:00
|
|
|
(setq buffer-read-only t)
|
|
|
|
(setq major-mode 'dired-mode)
|
|
|
|
(setq mode-name "Dired")
|
|
|
|
(dired-advertise)
|
2021-03-19 23:04:27 +00:00
|
|
|
(remove-hook 'kill-buffer-hook #'wdired-check-kill-buffer t)
|
2021-03-27 07:29:44 +00:00
|
|
|
(remove-hook 'before-change-functions #'wdired--before-change-fn t)
|
2021-03-19 23:04:27 +00:00
|
|
|
(remove-hook 'after-change-functions #'wdired--restore-properties t)
|
2021-03-23 04:08:24 +00:00
|
|
|
(remove-function (local 'revert-buffer-function) #'wdired-revert))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
(defun wdired-abort-changes ()
|
2021-09-22 18:26:40 +00:00
|
|
|
"Abort changes and return to `dired-mode'."
|
2004-04-23 20:57:46 +00:00
|
|
|
(interactive)
|
2021-03-27 14:54:10 +00:00
|
|
|
(remove-hook 'before-change-functions #'wdired--before-change-fn t)
|
|
|
|
(let ((inhibit-read-only t))
|
2004-04-23 20:57:46 +00:00
|
|
|
(erase-buffer)
|
2021-03-27 07:29:44 +00:00
|
|
|
(insert wdired--old-content)
|
|
|
|
(goto-char wdired--old-point))
|
2004-04-23 20:57:46 +00:00
|
|
|
(wdired-change-to-dired-mode)
|
|
|
|
(set-buffer-modified-p nil)
|
2004-05-05 08:01:53 +00:00
|
|
|
(setq buffer-undo-list nil)
|
|
|
|
(message "Changes aborted"))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
(defun wdired-finish-edit ()
|
|
|
|
"Actually rename files based on your editing in the Dired buffer."
|
|
|
|
(interactive)
|
2008-06-14 17:00:01 +00:00
|
|
|
(let ((changes nil)
|
2004-04-23 20:57:46 +00:00
|
|
|
(errors 0)
|
2008-11-30 05:42:35 +00:00
|
|
|
files-deleted
|
|
|
|
files-renamed
|
|
|
|
some-file-names-unchanged
|
|
|
|
file-old file-new tmp-value)
|
2004-04-23 20:57:46 +00:00
|
|
|
(save-excursion
|
2006-12-09 16:06:53 +00:00
|
|
|
(when (and wdired-allow-to-redirect-links
|
|
|
|
(fboundp 'make-symbolic-link))
|
|
|
|
(setq tmp-value (wdired-do-symlink-changes))
|
|
|
|
(setq errors (cdr tmp-value))
|
|
|
|
(setq changes (car tmp-value)))
|
|
|
|
(when (and wdired-allow-to-change-permissions
|
2021-03-27 14:54:10 +00:00
|
|
|
wdired--perm-beg) ; could have been changed
|
2006-12-09 16:06:53 +00:00
|
|
|
(setq tmp-value (wdired-do-perm-changes))
|
|
|
|
(setq errors (+ errors (cdr tmp-value)))
|
|
|
|
(setq changes (or changes (car tmp-value))))
|
2004-04-23 20:57:46 +00:00
|
|
|
(goto-char (point-max))
|
|
|
|
(while (not (bobp))
|
2021-03-27 14:54:10 +00:00
|
|
|
(setq file-old (and (wdired--line-preprocessed-p)
|
|
|
|
(wdired-get-filename nil t)))
|
2008-11-30 05:42:35 +00:00
|
|
|
(when file-old
|
2008-06-14 17:00:01 +00:00
|
|
|
(setq file-new (wdired-get-filename))
|
2008-11-30 05:42:35 +00:00
|
|
|
(if (equal file-new file-old)
|
|
|
|
(setq some-file-names-unchanged t)
|
2008-06-14 17:00:01 +00:00
|
|
|
(setq changes t)
|
|
|
|
(if (not file-new) ;empty filename!
|
2008-11-30 05:42:35 +00:00
|
|
|
(push file-old files-deleted)
|
2012-11-23 07:28:37 +00:00
|
|
|
(when wdired-keep-marker-rename
|
|
|
|
(let ((mark (cond ((integerp wdired-keep-marker-rename)
|
|
|
|
wdired-keep-marker-rename)
|
|
|
|
(wdired-keep-marker-rename
|
2021-03-27 07:29:44 +00:00
|
|
|
(cdr (assoc file-old wdired--old-marks)))
|
2012-11-23 07:28:37 +00:00
|
|
|
(t nil))))
|
|
|
|
(when mark
|
|
|
|
(push (cons (substitute-in-file-name file-new) mark)
|
2021-03-27 07:29:44 +00:00
|
|
|
wdired--old-marks))))
|
2008-11-30 05:42:35 +00:00
|
|
|
(push (cons file-old (substitute-in-file-name file-new))
|
|
|
|
files-renamed))))
|
2004-04-23 20:57:46 +00:00
|
|
|
(forward-line -1)))
|
2008-11-30 05:42:35 +00:00
|
|
|
(when files-renamed
|
|
|
|
(setq errors (+ errors (wdired-do-renames files-renamed))))
|
2018-07-28 23:14:41 +00:00
|
|
|
;; We have to be in wdired-mode when wdired-do-renames is executed
|
2020-10-11 04:05:49 +00:00
|
|
|
;; so that wdired--restore-properties runs, but we have to change
|
|
|
|
;; back to dired-mode before reverting the buffer to avoid using
|
|
|
|
;; wdired-revert, which changes back to wdired-mode.
|
2018-07-28 23:14:41 +00:00
|
|
|
(wdired-change-to-dired-mode)
|
2004-04-23 20:57:46 +00:00
|
|
|
(if changes
|
2008-11-30 05:42:35 +00:00
|
|
|
(progn
|
|
|
|
;; If we are displaying a single file (rather than the
|
|
|
|
;; contents of a directory), change dired-directory if that
|
|
|
|
;; file was renamed. (This ought to be generalized to
|
|
|
|
;; handle the multiple files case, but that's less trivial).
|
|
|
|
(when (and (stringp dired-directory)
|
|
|
|
(not (file-directory-p dired-directory))
|
|
|
|
(null some-file-names-unchanged)
|
|
|
|
(= (length files-renamed) 1))
|
|
|
|
(setq dired-directory (cdr (car files-renamed))))
|
|
|
|
;; Re-sort the buffer.
|
2012-11-23 07:28:37 +00:00
|
|
|
(revert-buffer)
|
|
|
|
(let ((inhibit-read-only t))
|
2021-03-27 07:29:44 +00:00
|
|
|
(dired-mark-remembered wdired--old-marks)))
|
2006-02-07 17:30:10 +00:00
|
|
|
(let ((inhibit-read-only t))
|
2004-04-23 20:57:46 +00:00
|
|
|
(remove-text-properties (point-min) (point-max)
|
|
|
|
'(old-name nil end-name nil old-link nil
|
|
|
|
end-link nil end-perm nil
|
|
|
|
old-perm nil perm-changed nil))
|
2020-10-11 04:05:49 +00:00
|
|
|
(message "(No changes to be performed)")
|
|
|
|
;; Deleting file indicator characters or editing the symlink
|
|
|
|
;; arrow in WDired are noops, so redisplay them immediately on
|
|
|
|
;; returning to Dired.
|
|
|
|
(revert-buffer)))
|
2006-12-09 16:06:53 +00:00
|
|
|
(when files-deleted
|
|
|
|
(wdired-flag-for-deletion files-deleted))
|
|
|
|
(when (> errors 0)
|
2020-10-31 15:30:04 +00:00
|
|
|
(dired-log-summary (format "%d actions failed" errors) nil)))
|
2004-04-23 20:57:46 +00:00
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
(setq buffer-undo-list nil))
|
|
|
|
|
2008-06-14 17:00:01 +00:00
|
|
|
(defun wdired-do-renames (renames)
|
|
|
|
"Perform RENAMES in parallel."
|
2020-09-04 04:09:23 +00:00
|
|
|
(let* ((residue ())
|
|
|
|
(progress nil)
|
|
|
|
(errors 0)
|
|
|
|
(total (1- (length renames)))
|
|
|
|
(prep (make-progress-reporter "Renaming" 0 total))
|
|
|
|
(overwrite (or (not wdired-confirm-overwrite) 1)))
|
2008-06-14 17:00:01 +00:00
|
|
|
(while (or renames
|
|
|
|
;; We've done one round through the renames, we have found
|
|
|
|
;; some residue, but we also made some progress, so maybe
|
|
|
|
;; some of the residue were resolved: try again.
|
|
|
|
(prog1 (setq renames residue)
|
|
|
|
(setq progress nil)
|
|
|
|
(setq residue nil)))
|
2020-09-04 04:09:23 +00:00
|
|
|
(progress-reporter-update prep (- total (length renames)))
|
2008-06-14 17:00:01 +00:00
|
|
|
(let* ((rename (pop renames))
|
|
|
|
(file-new (cdr rename)))
|
|
|
|
(cond
|
|
|
|
((rassoc file-new renames)
|
|
|
|
(error "Trying to rename 2 files to the same name"))
|
|
|
|
((assoc file-new renames)
|
|
|
|
;; Renaming to a file name that already exists but will itself be
|
|
|
|
;; renamed as well. Let's wait until that one gets renamed.
|
|
|
|
(push rename residue))
|
|
|
|
((and (assoc file-new residue)
|
|
|
|
;; Make sure the file really exists: if it doesn't it's
|
|
|
|
;; not really a conflict. It might be a temp-file generated
|
|
|
|
;; specifically to break a circular renaming.
|
|
|
|
(file-exists-p file-new))
|
|
|
|
;; Renaming to a file name that already exists, needed to be renamed,
|
|
|
|
;; but whose renaming could not be performed right away.
|
|
|
|
(if (or progress renames)
|
|
|
|
;; There's still a chance the conflict will be resolved.
|
|
|
|
(push rename residue)
|
|
|
|
;; We have not made any progress and we've reached the end of
|
|
|
|
;; the renames, so we really have a circular conflict, and we
|
|
|
|
;; have to forcefully break the cycle.
|
|
|
|
(message "Circular renaming: using temporary file name")
|
|
|
|
(let ((tmp (make-temp-name file-new)))
|
|
|
|
(push (cons (car rename) tmp) renames)
|
|
|
|
(push (cons tmp file-new) residue))))
|
|
|
|
(t
|
|
|
|
(setq progress t)
|
2012-11-23 07:28:37 +00:00
|
|
|
(let ((file-ori (car rename)))
|
2008-06-14 17:00:01 +00:00
|
|
|
(if wdired-use-interactive-rename
|
|
|
|
(wdired-search-and-rename file-ori file-new)
|
|
|
|
;; If dired-rename-file autoloads dired-aux while
|
|
|
|
;; dired-backup-overwrite is locally bound,
|
|
|
|
;; dired-backup-overwrite won't be initialized.
|
|
|
|
;; So we must ensure dired-aux is loaded.
|
|
|
|
(require 'dired-aux)
|
|
|
|
(condition-case err
|
2021-03-19 23:04:27 +00:00
|
|
|
(dlet ((dired-backup-overwrite nil))
|
2016-02-28 04:37:02 +00:00
|
|
|
(and wdired-create-parent-directories
|
|
|
|
(wdired-create-parentdirs file-new))
|
2008-06-14 17:00:01 +00:00
|
|
|
(dired-rename-file file-ori file-new
|
2012-11-23 07:28:37 +00:00
|
|
|
overwrite))
|
2008-06-14 17:00:01 +00:00
|
|
|
(error
|
|
|
|
(setq errors (1+ errors))
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
(dired-log "Rename `%s' to `%s' failed:\n%s\n"
|
Top-level elisp files respect ‘text-quoting-style’
In top-level elisp files, use format-message in diagnostic formats,
so that they follow user preference as per ‘text-quoting-style’
rather than being hard-coded to quote `like this'.
* lisp/allout.el (allout-get-configvar-values):
* lisp/apropos.el (apropos-symbols-internal):
* lisp/dired-aux.el (dired-do-shell-command, dired-create-files)
(dired-do-create-files-regexp, dired-create-files-non-directory):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log, dired-dnd-handle-local-file):
* lisp/disp-table.el (standard-display-european):
* lisp/find-dired.el (find-dired):
* lisp/forms.el (forms-mode):
* lisp/ido.el (ido-buffer-internal):
* lisp/info.el (Info-index-next):
* lisp/outline.el (outline-invent-heading):
* lisp/printing.el (pr-ps-outfile-preprint, pr-i-ps-send):
* lisp/proced.el (proced-log):
* lisp/ps-print.el (ps-print-preprint, ps-get-size):
* lisp/recentf.el (recentf-open-files, recentf-save-list):
* lisp/savehist.el (savehist-save):
* lisp/server.el (server-ensure-safe-dir):
* lisp/ses.el (ses-rename-cell):
* lisp/simple.el (list-processes--refresh):
* lisp/startup.el (command-line):
* lisp/strokes.el (strokes-unset-last-stroke)
(strokes-execute-stroke):
Use format-message so that quotes are restyled.
* lisp/cus-edit.el (custom-raised-buttons, customize-browse):
Don’t quote ‘raised’.
* lisp/descr-text.el (describe-char):
* lisp/dirtrack.el (dirtrack-debug-message):
* lisp/hexl.el (hexl-insert-multibyte-char):
Apply substitute-command-keys to help string.
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
Let dired-log do the formatting.
2015-08-26 08:30:29 +00:00
|
|
|
file-ori file-new
|
2012-11-23 07:28:37 +00:00
|
|
|
err)))))))))
|
2020-09-04 04:09:23 +00:00
|
|
|
(progress-reporter-done prep)
|
2008-06-14 17:00:01 +00:00
|
|
|
errors))
|
2009-09-24 01:37:14 +00:00
|
|
|
|
2016-02-28 04:37:02 +00:00
|
|
|
(defun wdired-create-parentdirs (file-new)
|
|
|
|
"Create parent directories for FILE-NEW if they don't exist."
|
|
|
|
(and (not (file-exists-p (file-name-directory file-new)))
|
|
|
|
(message "Creating directory for file %s" file-new)
|
|
|
|
(make-directory (file-name-directory file-new) t)))
|
2008-06-14 17:00:01 +00:00
|
|
|
|
2007-07-29 09:17:30 +00:00
|
|
|
(defun wdired-exit ()
|
|
|
|
"Exit wdired and return to dired mode.
|
|
|
|
Just return to dired mode if there are no changes. Otherwise,
|
|
|
|
ask a yes-or-no question whether to save or cancel changes,
|
|
|
|
and proceed depending on the answer."
|
|
|
|
(interactive)
|
|
|
|
(if (buffer-modified-p)
|
|
|
|
(if (y-or-n-p (format "Buffer %s modified; save changes? "
|
|
|
|
(current-buffer)))
|
|
|
|
(wdired-finish-edit)
|
|
|
|
(wdired-abort-changes))
|
|
|
|
(wdired-change-to-dired-mode)
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
(setq buffer-undo-list nil)
|
|
|
|
(message "(No changes need to be saved)")))
|
|
|
|
|
2006-02-07 17:30:10 +00:00
|
|
|
;; Rename a file, searching it in a modified dired buffer, in order
|
2004-04-23 20:57:46 +00:00
|
|
|
;; to be able to use `dired-do-create-files-regexp' and get its
|
2006-02-07 17:30:10 +00:00
|
|
|
;; "benefits".
|
2004-04-23 20:57:46 +00:00
|
|
|
(defun wdired-search-and-rename (filename-ori filename-new)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-max))
|
|
|
|
(forward-line -1)
|
2008-06-14 17:00:01 +00:00
|
|
|
(let ((done nil)
|
2018-07-28 23:14:41 +00:00
|
|
|
(failed t)
|
2004-04-23 20:57:46 +00:00
|
|
|
curr-filename)
|
2008-06-14 17:00:01 +00:00
|
|
|
(while (and (not done) (not (bobp)))
|
|
|
|
(setq curr-filename (wdired-get-filename nil t))
|
|
|
|
(if (equal curr-filename filename-ori)
|
2018-07-28 23:14:41 +00:00
|
|
|
(unwind-protect
|
|
|
|
(progn
|
|
|
|
(setq done t)
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
(dired-move-to-filename)
|
|
|
|
(search-forward (wdired-get-filename t) nil t)
|
|
|
|
(replace-match (file-name-nondirectory filename-ori) t t))
|
|
|
|
(dired-do-create-files-regexp
|
|
|
|
(function dired-rename-file)
|
|
|
|
"Move" 1 ".*" filename-new nil t)
|
|
|
|
(setq failed nil))
|
|
|
|
;; If user types C-g when prompted to change the file
|
|
|
|
;; name, make sure we return to dired-mode.
|
|
|
|
(when failed (wdired-change-to-dired-mode)))
|
2008-06-14 17:00:01 +00:00
|
|
|
(forward-line -1))))))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;; marks a list of files for deletion
|
|
|
|
(defun wdired-flag-for-deletion (filenames-ori)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
|
|
|
(while (not (eobp))
|
|
|
|
(if (member (dired-get-filename nil t) filenames-ori)
|
|
|
|
(dired-flag-file-deletion 1)
|
|
|
|
(forward-line)))))
|
|
|
|
|
|
|
|
(defun wdired-customize ()
|
2005-04-11 19:01:31 +00:00
|
|
|
"Customize WDired options."
|
2004-04-23 20:57:46 +00:00
|
|
|
(interactive)
|
|
|
|
(customize-apropos "wdired" 'groups))
|
|
|
|
|
2011-04-19 13:44:55 +00:00
|
|
|
(defun wdired-revert (&optional _arg _noconfirm)
|
2005-04-11 19:01:31 +00:00
|
|
|
"Discard changes in the buffer and update it based on changes on disk.
|
|
|
|
Optional arguments are ignored."
|
2004-04-23 20:57:46 +00:00
|
|
|
(wdired-change-to-dired-mode)
|
|
|
|
(revert-buffer)
|
|
|
|
(wdired-change-to-wdired-mode))
|
|
|
|
|
|
|
|
(defun wdired-check-kill-buffer ()
|
2004-04-23 22:22:13 +00:00
|
|
|
;; FIXME: Can't we use the normal mechanism for that? --Stef
|
2004-04-23 20:57:46 +00:00
|
|
|
(if (and
|
|
|
|
(buffer-modified-p)
|
2021-09-22 18:26:40 +00:00
|
|
|
(not (y-or-n-p "Buffer changed. Discard changes and kill buffer?")))
|
2009-09-24 01:37:14 +00:00
|
|
|
(error "Error")))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
2018-07-28 23:14:41 +00:00
|
|
|
;; Added to after-change-functions in wdired-change-to-wdired-mode to
|
|
|
|
;; ensure that, on editing a file name, new characters get the
|
|
|
|
;; dired-filename text property, which allows functions that look for
|
|
|
|
;; this property (e.g. dired-isearch-filenames) to work in wdired-mode
|
|
|
|
;; and also avoids an error with non-nil wdired-use-interactive-rename
|
2020-10-11 04:05:49 +00:00
|
|
|
;; (bug#32173). Also prevents editing the symlink arrow (which is a
|
|
|
|
;; noop) from corrupting the link name (see bug#18475 for elaboration).
|
|
|
|
(defun wdired--restore-properties (beg end _len)
|
2018-07-28 23:14:41 +00:00
|
|
|
(save-match-data
|
|
|
|
(save-excursion
|
2021-07-19 17:03:28 +00:00
|
|
|
(save-restriction
|
|
|
|
(widen)
|
|
|
|
(let ((lep (line-end-position))
|
|
|
|
(used-F (dired-check-switches
|
|
|
|
dired-actual-switches
|
|
|
|
"F" "classify")))
|
|
|
|
;; Deleting the space between the link name and the arrow (a
|
|
|
|
;; noop) also deletes the end-name property, so restore it.
|
|
|
|
(when (and (save-excursion
|
|
|
|
(re-search-backward dired-permission-flags-regexp nil t)
|
|
|
|
(looking-at "l"))
|
|
|
|
(get-text-property (1- (point)) 'dired-filename)
|
|
|
|
(not (get-text-property (point) 'dired-filename))
|
|
|
|
(not (get-text-property (point) 'end-name)))
|
2020-10-11 04:05:49 +00:00
|
|
|
(put-text-property (point) (1+ (point)) 'end-name t))
|
2021-07-19 17:03:28 +00:00
|
|
|
(beginning-of-line)
|
|
|
|
(when (re-search-forward
|
|
|
|
directory-listing-before-filename-regexp lep t)
|
|
|
|
(setq beg (point)
|
|
|
|
end (if (or
|
|
|
|
;; If the file is a symlink, put the
|
|
|
|
;; dired-filename property only on the link
|
|
|
|
;; name. (Using (file-symlink-p
|
|
|
|
;; (dired-get-filename)) fails in
|
|
|
|
;; wdired-mode, bug#32673.)
|
|
|
|
(and (re-search-backward
|
|
|
|
dired-permission-flags-regexp nil t)
|
|
|
|
(looking-at "l")
|
|
|
|
;; macOS and Ultrix adds "@" to the end
|
|
|
|
;; of symlinks when using -F.
|
|
|
|
(if (and used-F
|
|
|
|
dired-ls-F-marks-symlinks)
|
|
|
|
(re-search-forward "@? -> " lep t)
|
|
|
|
(search-forward " -> " lep t)))
|
|
|
|
;; When dired-listing-switches includes "F"
|
|
|
|
;; or "classify", don't treat appended
|
|
|
|
;; indicator characters as part of the file
|
|
|
|
;; name (bug#34915).
|
|
|
|
(and used-F
|
|
|
|
(re-search-forward "[*/@|=>]$" lep t)))
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
lep))
|
|
|
|
(put-text-property beg end 'dired-filename t)))))))
|
2018-07-28 23:14:41 +00:00
|
|
|
|
2004-04-23 20:57:46 +00:00
|
|
|
(defun wdired-next-line (arg)
|
|
|
|
"Move down lines then position at filename or the current column.
|
2005-04-11 19:01:31 +00:00
|
|
|
See `wdired-use-dired-vertical-movement'. Optional prefix ARG
|
2004-04-23 20:57:46 +00:00
|
|
|
says how many lines to move; default is one line."
|
2016-06-05 21:16:17 +00:00
|
|
|
(interactive "^p")
|
2020-02-18 17:47:32 +00:00
|
|
|
(setq this-command 'next-line) ;Let `line-move' preserve the column.
|
2007-10-29 06:48:22 +00:00
|
|
|
(with-no-warnings (next-line arg))
|
2005-04-11 19:01:31 +00:00
|
|
|
(if (or (eq wdired-use-dired-vertical-movement t)
|
|
|
|
(and wdired-use-dired-vertical-movement
|
2004-04-23 20:57:46 +00:00
|
|
|
(< (current-column)
|
|
|
|
(save-excursion (dired-move-to-filename)
|
|
|
|
(current-column)))))
|
|
|
|
(dired-move-to-filename)))
|
|
|
|
|
|
|
|
(defun wdired-previous-line (arg)
|
|
|
|
"Move up lines then position at filename or the current column.
|
2005-04-11 19:01:31 +00:00
|
|
|
See `wdired-use-dired-vertical-movement'. Optional prefix ARG
|
2004-04-23 20:57:46 +00:00
|
|
|
says how many lines to move; default is one line."
|
2016-06-05 21:16:17 +00:00
|
|
|
(interactive "^p")
|
2020-02-18 17:47:32 +00:00
|
|
|
(setq this-command 'previous-line) ;Let `line-move' preserve the column.
|
2007-10-29 06:48:22 +00:00
|
|
|
(with-no-warnings (previous-line arg))
|
2005-04-11 19:01:31 +00:00
|
|
|
(if (or (eq wdired-use-dired-vertical-movement t)
|
|
|
|
(and wdired-use-dired-vertical-movement
|
2004-04-23 20:57:46 +00:00
|
|
|
(< (current-column)
|
|
|
|
(save-excursion (dired-move-to-filename)
|
|
|
|
(current-column)))))
|
|
|
|
(dired-move-to-filename)))
|
|
|
|
|
|
|
|
;; Put the needed properties to allow the user to change links' targets
|
2021-03-27 07:29:44 +00:00
|
|
|
(defun wdired--preprocess-symlinks ()
|
|
|
|
(save-excursion
|
2021-03-27 14:54:10 +00:00
|
|
|
(when (looking-at dired-re-sym)
|
|
|
|
(re-search-forward " -> \\(.*\\)$")
|
|
|
|
(put-text-property (1- (match-beginning 1))
|
|
|
|
(match-beginning 1) 'old-link
|
|
|
|
(match-string-no-properties 1))
|
|
|
|
(put-text-property (match-end 1) (1+ (match-end 1)) 'end-link t)
|
|
|
|
(unless wdired-allow-to-redirect-links
|
|
|
|
(put-text-property (match-beginning 0)
|
|
|
|
(match-end 1) 'read-only t)))))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
(defun wdired-get-previous-link (&optional old move)
|
|
|
|
"Return the next symlink target.
|
|
|
|
If OLD, return the old target. If MOVE, move point before it."
|
2006-12-09 16:06:53 +00:00
|
|
|
(let (beg end target)
|
|
|
|
(setq beg (previous-single-property-change (point) 'old-link nil))
|
2020-10-11 04:05:49 +00:00
|
|
|
(when beg
|
|
|
|
(when (save-excursion
|
|
|
|
(goto-char beg)
|
|
|
|
(and (looking-at " ")
|
|
|
|
(looking-back " ->" (line-beginning-position))))
|
|
|
|
(setq beg (1+ beg)))
|
|
|
|
(if old
|
|
|
|
(setq target (get-text-property (1- beg) 'old-link))
|
|
|
|
(setq end (save-excursion
|
|
|
|
(goto-char beg)
|
|
|
|
(next-single-property-change beg 'end-link nil
|
|
|
|
(line-end-position))))
|
|
|
|
(setq target (buffer-substring-no-properties beg end)))
|
|
|
|
(if move (goto-char (1- beg))))
|
2016-03-08 20:32:52 +00:00
|
|
|
(and target (wdired-normalize-filename target t))))
|
2006-12-09 16:06:53 +00:00
|
|
|
|
2007-11-22 13:52:04 +00:00
|
|
|
(declare-function make-symbolic-link "fileio.c")
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;; Perform the changes in the target of the changed links.
|
2006-02-07 17:30:10 +00:00
|
|
|
(defun wdired-do-symlink-changes ()
|
2004-04-23 20:57:46 +00:00
|
|
|
(let ((changes nil)
|
|
|
|
(errors 0)
|
|
|
|
link-to-ori link-to-new link-from)
|
|
|
|
(goto-char (point-max))
|
|
|
|
(while (setq link-to-new (wdired-get-previous-link))
|
|
|
|
(setq link-to-ori (wdired-get-previous-link t t))
|
|
|
|
(setq link-from (wdired-get-filename nil t))
|
2006-02-07 17:30:10 +00:00
|
|
|
(unless (equal link-to-new link-to-ori)
|
|
|
|
(setq changes t)
|
|
|
|
(if (equal link-to-new "") ;empty filename!
|
2020-11-25 21:13:33 +00:00
|
|
|
(setq link-to-new (null-device)))
|
2006-02-07 17:30:10 +00:00
|
|
|
(condition-case err
|
|
|
|
(progn
|
|
|
|
(delete-file link-from)
|
|
|
|
(make-symbolic-link
|
|
|
|
(substitute-in-file-name link-to-new) link-from))
|
|
|
|
(error
|
|
|
|
(setq errors (1+ errors))
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
(dired-log "Link `%s' to `%s' failed:\n%s\n"
|
Top-level elisp files respect ‘text-quoting-style’
In top-level elisp files, use format-message in diagnostic formats,
so that they follow user preference as per ‘text-quoting-style’
rather than being hard-coded to quote `like this'.
* lisp/allout.el (allout-get-configvar-values):
* lisp/apropos.el (apropos-symbols-internal):
* lisp/dired-aux.el (dired-do-shell-command, dired-create-files)
(dired-do-create-files-regexp, dired-create-files-non-directory):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log, dired-dnd-handle-local-file):
* lisp/disp-table.el (standard-display-european):
* lisp/find-dired.el (find-dired):
* lisp/forms.el (forms-mode):
* lisp/ido.el (ido-buffer-internal):
* lisp/info.el (Info-index-next):
* lisp/outline.el (outline-invent-heading):
* lisp/printing.el (pr-ps-outfile-preprint, pr-i-ps-send):
* lisp/proced.el (proced-log):
* lisp/ps-print.el (ps-print-preprint, ps-get-size):
* lisp/recentf.el (recentf-open-files, recentf-save-list):
* lisp/savehist.el (savehist-save):
* lisp/server.el (server-ensure-safe-dir):
* lisp/ses.el (ses-rename-cell):
* lisp/simple.el (list-processes--refresh):
* lisp/startup.el (command-line):
* lisp/strokes.el (strokes-unset-last-stroke)
(strokes-execute-stroke):
Use format-message so that quotes are restyled.
* lisp/cus-edit.el (custom-raised-buttons, customize-browse):
Don’t quote ‘raised’.
* lisp/descr-text.el (describe-char):
* lisp/dirtrack.el (dirtrack-debug-message):
* lisp/hexl.el (hexl-insert-multibyte-char):
Apply substitute-command-keys to help string.
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
Let dired-log do the formatting.
2015-08-26 08:30:29 +00:00
|
|
|
link-from link-to-new
|
2006-02-07 17:30:10 +00:00
|
|
|
err)))))
|
2004-04-23 20:57:46 +00:00
|
|
|
(cons changes errors)))
|
|
|
|
|
|
|
|
;; Perform a "case command" skipping read-only words.
|
|
|
|
(defun wdired-xcase-word (command arg)
|
|
|
|
(if (< arg 0)
|
|
|
|
(funcall command arg)
|
2006-02-07 17:30:10 +00:00
|
|
|
(while (> arg 0)
|
2011-04-19 13:44:55 +00:00
|
|
|
(condition-case nil
|
2006-02-07 17:30:10 +00:00
|
|
|
(progn
|
|
|
|
(funcall command 1)
|
|
|
|
(setq arg (1- arg)))
|
|
|
|
(error
|
Fix problems caused by new implementation of sub-word mode
* lisp/subr.el (forward-word-strictly, backward-word-strictly):
New functions.
(word-move-empty-char-table): New variable.
* etc/NEWS: Mention 'forward-word-strictly' and
'backward-word-strictly'.
* doc/lispref/positions.texi (Word Motion): Document
'find-word-boundary-function-table', 'forward-word-strictly', and
'backward-word-strictly'. (Bug#22560)
* src/syntax.c (syms_of_syntax)
<find-word-boundary-function-table>: Doc fix.
* lisp/wdired.el (wdired-xcase-word):
* lisp/textmodes/texnfo-upd.el (texinfo-copy-node-name)
(texinfo-copy-section-title, texinfo-start-menu-description)
(texinfo-copy-menu-title, texinfo-specific-section-type)
(texinfo-insert-node-lines, texinfo-copy-next-section-title):
* lisp/textmodes/texinfo.el (texinfo-clone-environment)
(texinfo-insert-@end):
* lisp/textmodes/texinfmt.el (texinfo-format-scan)
(texinfo-anchor, texinfo-multitable-widths)
(texinfo-multitable-item):
* lisp/textmodes/tex-mode.el (latex-env-before-change):
* lisp/textmodes/flyspell.el (texinfo-mode-flyspell-verify):
* lisp/skeleton.el (skeleton-insert):
* lisp/simple.el (count-words):
* lisp/progmodes/vhdl-mode.el (vhdl-beginning-of-libunit)
(vhdl-beginning-of-defun, vhdl-beginning-of-statement-1)
(vhdl-update-sensitivity-list, vhdl-template-block)
(vhdl-template-break, vhdl-template-case, vhdl-template-default)
(vhdl-template-default-indent, vhdl-template-for-loop)
(vhdl-template-if-then-use, vhdl-template-bare-loop)
(vhdl-template-nature, vhdl-template-procedural)
(vhdl-template-process, vhdl-template-selected-signal-asst)
(vhdl-template-type, vhdl-template-variable)
(vhdl-template-while-loop, vhdl-beginning-of-block)
(vhdl-hooked-abbrev, vhdl-port-copy, vhdl-hs-forward-sexp-func):
* lisp/progmodes/verilog-mode.el (verilog-backward-sexp)
(verilog-forward-sexp, verilog-beg-of-statement)
(verilog-set-auto-endcomments, verilog-backward-token)
(verilog-do-indent):
* lisp/progmodes/vera-mode.el (vera-guess-basic-syntax)
(vera-indent-block-closing):
* lisp/progmodes/simula.el (simula-context)
(simula-backward-up-level, simula-forward-down-level)
(simula-previous-statement, simula-next-statement)
(simula-skip-comment-backward, simula-calculate-indent)
(simula-find-if, simula-electric-keyword):
* lisp/progmodes/sh-script.el (sh-smie--rc-newline-semi-p):
* lisp/progmodes/ruby-mode.el (ruby-smie--redundant-do-p)
(ruby-smie--forward-token, ruby-smie--backward-token)
(ruby-singleton-class-p, ruby-calculate-indent)
(ruby-forward-sexp, ruby-backward-sexp):
* lisp/progmodes/ps-mode.el (ps-run-goto-error):
* lisp/progmodes/perl-mode.el (perl-syntax-propertize-function)
(perl-syntax-propertize-special-constructs)
(perl-backward-to-start-of-continued-exp):
* lisp/progmodes/pascal.el (pascal-indent-declaration):
* lisp/progmodes/octave.el (octave-function-file-p):
* lisp/progmodes/mantemp.el (mantemp-insert-cxx-syntax):
* lisp/progmodes/js.el (js--forward-function-decl):
* lisp/progmodes/idlwave.el (idlwave-show-begin-check)
(idlwave-beginning-of-block, idlwave-end-of-block)
(idlwave-block-jump-out, idlwave-determine-class):
* lisp/progmodes/icon.el (icon-is-continuation-line)
(icon-backward-to-start-of-continued-exp, end-of-icon-defun):
* lisp/progmodes/hideif.el (hide-ifdef-define):
* lisp/progmodes/f90.el (f90-change-keywords):
* lisp/progmodes/cperl-mode.el (cperl-electric-pod)
(cperl-linefeed, cperl-electric-terminator)
(cperl-find-pods-heres, cperl-fix-line-spacing)
(cperl-invert-if-unless):
* lisp/progmodes/cc-engine.el (c-forward-<>-arglist-recur):
* lisp/progmodes/cc-align.el (c-lineup-java-inher):
* lisp/progmodes/ada-mode.el (ada-compile-goto-error)
(ada-adjust-case-skeleton, ada-create-case-exception)
(ada-create-case-exception-substring)
(ada-case-read-exceptions-from-file, ada-after-keyword-p)
(ada-scan-paramlist, ada-get-current-indent, ada-get-indent-end)
(ada-get-indent-if, ada-get-indent-block-start)
(ada-get-indent-loop, ada-get-indent-type)
(ada-search-prev-end-stmt, ada-check-defun-name)
(ada-goto-decl-start, ada-goto-matching-start)
(ada-goto-matching-end, ada-looking-at-semi-or)
(ada-looking-at-semi-private, ada-in-paramlist-p)
(ada-search-ignore-complex-boolean, ada-move-to-start)
(ada-move-to-end, ada-which-function, ada-gen-treat-proc):
* lisp/net/quickurl.el (quickurl-grab-url):
* lisp/mail/sendmail.el (mail-do-fcc):
* lisp/mail/rmail.el (rmail-resend):
* lisp/mail/mailabbrev.el (mail-abbrev-complete-alias):
* lisp/mail/mail-extr.el (mail-extract-address-components):
* lisp/json.el (json-read-keyword):
* lisp/files.el (insert-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* lisp/completion.el (symbol-under-point, symbol-before-point)
(symbol-before-point-for-complete, next-cdabbrev)
(add-completions-from-c-buffer):
* lisp/cedet/semantic/texi.el (semantic-up-context)
(semantic-beginning-of-context):
* lisp/cedet/semantic/bovine/el.el (semantic-get-local-variables):
use 'forward-word-strictly' and 'backward-word-strictly' instead
of 'forward-word' and 'backward-word'.
[This reapplies commit c1d32a65372c72d7de4808d620eefd3214a8e92a,
which was inadvertently lost by merge commit
c71e7cc113ed0d5f01aaa2e441a3e3c9fbeb9fa5.]
2016-03-22 00:42:35 +00:00
|
|
|
(if (forward-word-strictly)
|
2007-01-09 09:14:46 +00:00
|
|
|
;; Skip any non-word characters to avoid triggering a read-only
|
|
|
|
;; error which would cause skipping the next word characters too.
|
|
|
|
(skip-syntax-forward "^w")
|
|
|
|
(setq arg 0)))))))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
(defun wdired-downcase-word (arg)
|
2005-04-11 19:01:31 +00:00
|
|
|
"WDired version of `downcase-word'.
|
2004-04-23 20:57:46 +00:00
|
|
|
Like original function but it skips read-only words."
|
|
|
|
(interactive "p")
|
|
|
|
(wdired-xcase-word 'downcase-word arg))
|
|
|
|
|
|
|
|
(defun wdired-upcase-word (arg)
|
2005-04-11 19:01:31 +00:00
|
|
|
"WDired version of `upcase-word'.
|
2004-04-23 20:57:46 +00:00
|
|
|
Like original function but it skips read-only words."
|
|
|
|
(interactive "p")
|
|
|
|
(wdired-xcase-word 'upcase-word arg))
|
|
|
|
|
|
|
|
(defun wdired-capitalize-word (arg)
|
2005-04-11 19:01:31 +00:00
|
|
|
"WDired version of `capitalize-word'.
|
2004-04-23 20:57:46 +00:00
|
|
|
Like original function but it skips read-only words."
|
|
|
|
(interactive "p")
|
|
|
|
(wdired-xcase-word 'capitalize-word arg))
|
|
|
|
|
|
|
|
;; The following code deals with changing the access bits (or
|
|
|
|
;; permissions) of the files.
|
|
|
|
|
2006-02-07 17:30:10 +00:00
|
|
|
(defvar wdired-perm-mode-map
|
|
|
|
(let ((map (make-sparse-keymap)))
|
2021-03-19 23:04:27 +00:00
|
|
|
(define-key map " " #'wdired-toggle-bit)
|
|
|
|
(define-key map "r" #'wdired-set-bit)
|
|
|
|
(define-key map "w" #'wdired-set-bit)
|
|
|
|
(define-key map "x" #'wdired-set-bit)
|
|
|
|
(define-key map "-" #'wdired-set-bit)
|
|
|
|
(define-key map "S" #'wdired-set-bit)
|
|
|
|
(define-key map "s" #'wdired-set-bit)
|
|
|
|
(define-key map "T" #'wdired-set-bit)
|
|
|
|
(define-key map "t" #'wdired-set-bit)
|
|
|
|
(define-key map "s" #'wdired-set-bit)
|
|
|
|
(define-key map "l" #'wdired-set-bit)
|
|
|
|
(define-key map [mouse-1] #'wdired-mouse-toggle-bit)
|
2006-02-07 17:30:10 +00:00
|
|
|
map))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
2006-12-09 16:06:53 +00:00
|
|
|
;; Put a keymap property to the permission bits of the files, and store the
|
2004-04-23 20:57:46 +00:00
|
|
|
;; original name and permissions as a property
|
2021-03-27 07:29:44 +00:00
|
|
|
(defun wdired--preprocess-perms ()
|
|
|
|
(save-excursion
|
2021-03-27 14:54:10 +00:00
|
|
|
(when (and (not (looking-at dired-re-sym))
|
|
|
|
(wdired-get-filename)
|
|
|
|
(re-search-forward dired-re-perms
|
|
|
|
(line-end-position) 'eol))
|
|
|
|
(let ((begin (match-beginning 0))
|
|
|
|
(end (match-end 0)))
|
|
|
|
(if (eq wdired-allow-to-change-permissions 'advanced)
|
|
|
|
(progn
|
|
|
|
(put-text-property begin end 'read-only nil)
|
|
|
|
;; make first permission bit writable
|
|
|
|
(put-text-property
|
|
|
|
(1- begin) begin 'rear-nonsticky '(read-only)))
|
|
|
|
;; avoid that keymap applies to text following permissions
|
|
|
|
(add-text-properties
|
|
|
|
(1+ begin) end
|
|
|
|
`(keymap ,wdired-perm-mode-map rear-nonsticky (keymap))))
|
|
|
|
(put-text-property end (1+ end) 'end-perm t)
|
|
|
|
(put-text-property
|
|
|
|
begin (1+ begin)
|
|
|
|
'old-perm (match-string-no-properties 0))))))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
(defun wdired-perm-allowed-in-pos (char pos)
|
|
|
|
(cond
|
|
|
|
((= char ?-) t)
|
|
|
|
((= char ?r) (= (% pos 3) 0))
|
|
|
|
((= char ?w) (= (% pos 3) 1))
|
|
|
|
((= char ?x) (= (% pos 3) 2))
|
|
|
|
((memq char '(?s ?S)) (memq pos '(2 5)))
|
|
|
|
((memq char '(?t ?T)) (= pos 8))
|
|
|
|
((= char ?l) (= pos 5))))
|
|
|
|
|
2021-03-27 14:54:10 +00:00
|
|
|
(defun wdired-set-bit (&optional char)
|
2004-04-23 20:57:46 +00:00
|
|
|
"Set a permission bit character."
|
2021-03-27 14:54:10 +00:00
|
|
|
(interactive (list last-command-event))
|
|
|
|
(unless char (setq char last-command-event))
|
|
|
|
(if (wdired-perm-allowed-in-pos char
|
|
|
|
(- (wdired--current-column) wdired--perm-beg))
|
|
|
|
(let ((new-bit (char-to-string char))
|
2004-04-23 20:57:46 +00:00
|
|
|
(inhibit-read-only t)
|
2021-03-27 14:54:10 +00:00
|
|
|
(pos-prop (+ (line-beginning-position) wdired--perm-beg)))
|
|
|
|
(set-text-properties 0 1 (text-properties-at (point)) new-bit)
|
2004-04-23 20:57:46 +00:00
|
|
|
(insert new-bit)
|
|
|
|
(delete-char 1)
|
2021-03-27 14:54:10 +00:00
|
|
|
(put-text-property (1- pos-prop) pos-prop 'perm-changed t))
|
2004-04-23 20:57:46 +00:00
|
|
|
(forward-char 1)))
|
|
|
|
|
2006-02-07 17:30:10 +00:00
|
|
|
(defun wdired-toggle-bit ()
|
2004-04-23 20:57:46 +00:00
|
|
|
"Toggle the permission bit at point."
|
|
|
|
(interactive)
|
2021-03-27 14:54:10 +00:00
|
|
|
(wdired-set-bit
|
|
|
|
(cond
|
|
|
|
((not (eq (char-after (point)) ?-)) ?-)
|
|
|
|
((= (% (- (wdired--current-column) wdired--perm-beg) 3) 0) ?r)
|
|
|
|
((= (% (- (wdired--current-column) wdired--perm-beg) 3) 1) ?w)
|
|
|
|
(t ?x))))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
(defun wdired-mouse-toggle-bit (event)
|
|
|
|
"Toggle the permission bit that was left clicked."
|
|
|
|
(interactive "e")
|
|
|
|
(mouse-set-point event)
|
|
|
|
(wdired-toggle-bit))
|
|
|
|
|
2020-10-31 15:30:04 +00:00
|
|
|
;; Allowed chars for #o4000 bit are Ss in position 3
|
|
|
|
;; Allowed chars for #o2000 bit are Ssl in position 6
|
|
|
|
;; Allowed chars for #o1000 bit are Tt in position 9
|
2004-04-23 20:57:46 +00:00
|
|
|
(defun wdired-perms-to-number (perms)
|
2020-10-31 15:30:04 +00:00
|
|
|
(let ((nperm #o0777))
|
|
|
|
(if (= (elt perms 1) ?-) (setq nperm (- nperm #o400)))
|
|
|
|
(if (= (elt perms 2) ?-) (setq nperm (- nperm #o200)))
|
2006-12-09 16:06:53 +00:00
|
|
|
(let ((p-bit (elt perms 3)))
|
2020-10-31 15:30:04 +00:00
|
|
|
(if (memq p-bit '(?- ?S)) (setq nperm (- nperm #o100)))
|
|
|
|
(if (memq p-bit '(?s ?S)) (setq nperm (+ nperm #o4000))))
|
|
|
|
(if (= (elt perms 4) ?-) (setq nperm (- nperm #o40)))
|
|
|
|
(if (= (elt perms 5) ?-) (setq nperm (- nperm #o20)))
|
2006-12-09 16:06:53 +00:00
|
|
|
(let ((p-bit (elt perms 6)))
|
2020-10-31 15:30:04 +00:00
|
|
|
(if (memq p-bit '(?- ?S ?l)) (setq nperm (- nperm #o10)))
|
|
|
|
(if (memq p-bit '(?s ?S ?l)) (setq nperm (+ nperm #o2000))))
|
2006-12-09 16:06:53 +00:00
|
|
|
(if (= (elt perms 7) ?-) (setq nperm (- nperm 4)))
|
|
|
|
(if (= (elt perms 8) ?-) (setq nperm (- nperm 2)))
|
|
|
|
(let ((p-bit (elt perms 9)))
|
|
|
|
(if (memq p-bit '(?- ?T)) (setq nperm (- nperm 1)))
|
2020-10-31 15:30:04 +00:00
|
|
|
(if (memq p-bit '(?t ?T)) (setq nperm (+ nperm #o1000))))
|
2006-12-09 16:06:53 +00:00
|
|
|
nperm))
|
2004-04-23 20:57:46 +00:00
|
|
|
|
|
|
|
;; Perform the changes in the permissions of the files that have
|
|
|
|
;; changed.
|
|
|
|
(defun wdired-do-perm-changes ()
|
|
|
|
(let ((changes nil)
|
|
|
|
(errors 0)
|
|
|
|
(prop-wanted (if (eq wdired-allow-to-change-permissions 'advanced)
|
|
|
|
'old-perm 'perm-changed))
|
2020-10-31 15:30:04 +00:00
|
|
|
filename perms-ori perms-new)
|
2004-04-23 20:57:46 +00:00
|
|
|
(goto-char (next-single-property-change (point-min) prop-wanted
|
|
|
|
nil (point-max)))
|
|
|
|
(while (not (eobp))
|
|
|
|
(setq perms-ori (get-text-property (point) 'old-perm))
|
|
|
|
(setq perms-new (buffer-substring-no-properties
|
|
|
|
(point) (next-single-property-change (point) 'end-perm)))
|
2006-02-07 17:30:10 +00:00
|
|
|
(unless (equal perms-ori perms-new)
|
|
|
|
(setq changes t)
|
|
|
|
(setq filename (wdired-get-filename nil t))
|
|
|
|
(if (= (length perms-new) 10)
|
2020-10-31 15:30:04 +00:00
|
|
|
(condition-case nil
|
|
|
|
(set-file-modes filename (wdired-perms-to-number perms-new))
|
|
|
|
(error
|
|
|
|
(setq errors (1+ errors))
|
|
|
|
(dired-log "Setting mode of `%s' to `%s' failed\n\n"
|
|
|
|
filename perms-new)))
|
2006-02-07 17:30:10 +00:00
|
|
|
(setq errors (1+ errors))
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
(dired-log "Cannot parse permission `%s' for file `%s'\n\n"
|
Top-level elisp files respect ‘text-quoting-style’
In top-level elisp files, use format-message in diagnostic formats,
so that they follow user preference as per ‘text-quoting-style’
rather than being hard-coded to quote `like this'.
* lisp/allout.el (allout-get-configvar-values):
* lisp/apropos.el (apropos-symbols-internal):
* lisp/dired-aux.el (dired-do-shell-command, dired-create-files)
(dired-do-create-files-regexp, dired-create-files-non-directory):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log, dired-dnd-handle-local-file):
* lisp/disp-table.el (standard-display-european):
* lisp/find-dired.el (find-dired):
* lisp/forms.el (forms-mode):
* lisp/ido.el (ido-buffer-internal):
* lisp/info.el (Info-index-next):
* lisp/outline.el (outline-invent-heading):
* lisp/printing.el (pr-ps-outfile-preprint, pr-i-ps-send):
* lisp/proced.el (proced-log):
* lisp/ps-print.el (ps-print-preprint, ps-get-size):
* lisp/recentf.el (recentf-open-files, recentf-save-list):
* lisp/savehist.el (savehist-save):
* lisp/server.el (server-ensure-safe-dir):
* lisp/ses.el (ses-rename-cell):
* lisp/simple.el (list-processes--refresh):
* lisp/startup.el (command-line):
* lisp/strokes.el (strokes-unset-last-stroke)
(strokes-execute-stroke):
Use format-message so that quotes are restyled.
* lisp/cus-edit.el (custom-raised-buttons, customize-browse):
Don’t quote ‘raised’.
* lisp/descr-text.el (describe-char):
* lisp/dirtrack.el (dirtrack-debug-message):
* lisp/hexl.el (hexl-insert-multibyte-char):
Apply substitute-command-keys to help string.
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
Let dired-log do the formatting.
2015-08-26 08:30:29 +00:00
|
|
|
perms-new filename)))
|
2004-04-23 20:57:46 +00:00
|
|
|
(goto-char (next-single-property-change (1+ (point)) prop-wanted
|
|
|
|
nil (point-max))))
|
|
|
|
(cons changes errors)))
|
|
|
|
|
|
|
|
(provide 'wdired)
|
|
|
|
;;; wdired.el ends here
|