diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2018-12-22 13:57:54 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2018-12-22 13:57:54 +0100 |
commit | 88b41c40d0ee681af66d11793bb6dd20e3c7826f (patch) | |
tree | 5043f57eae7bdaaa53c9f992407cec8f00a8687f /lisp/vc | |
parent | 452d0c52cdf9a1ac9fe0df8acff931e9ef94c0a2 (diff) | |
download | emacs-88b41c40d0ee681af66d11793bb6dd20e3c7826f.tar.gz |
Use "file name handler" consequently
* doc/lispref/files.texi:
* doc/lispref/processes.texi:
* doc/misc/ediff.texi:
* lisp/simple.el:
* lisp/vc/ediff-ptch.el:
* src/buffer.c:
* src/dired.c:
* src/fileio.c:
* src/image.c:
* src/insdel.c:
* src/w32fns.c: Use "file name handler" consequently.
Diffstat (limited to 'lisp/vc')
-rw-r--r-- | lisp/vc/ediff-ptch.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc/ediff-ptch.el b/lisp/vc/ediff-ptch.el index 03f54219130..79d82e30b1d 100644 --- a/lisp/vc/ediff-ptch.el +++ b/lisp/vc/ediff-ptch.el @@ -681,7 +681,7 @@ optional argument, then use it." (error "Ediff doesn't take the -V option in `ediff-patch-options'--sorry")) - ;; Make a temp file, if source-filename has a magic file handler (or if + ;; Make a temp file, if source-filename has a magic file name handler (or if ;; it is handled via auto-mode-alist and similar magic). ;; Check if there is a buffer visiting source-filename and if they are in ;; sync; arrange for the deletion of temp file. @@ -691,7 +691,7 @@ optional argument, then use it." ;; Check if source file name has triggered black magic, such as file name ;; handlers or auto mode alist, and make a note of it. ;; true-source-filename should be either the original name or a - ;; temporary file where we put the after-product of the file handler. + ;; temporary file where we put the after-product of the file name handler. (setq file-name-magic-p (not (equal (file-truename true-source-filename) (file-truename source-filename)))) |