Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
57e81f57
Commit
57e81f57
authored
Apr 27, 1994
by
Richard M. Stallman
Browse files
(ange-ftp-completion-hook-function): Use new inhibit vars.
parent
6a66e3be
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
lisp/files.el
lisp/files.el
+5
-1
No files found.
lisp/files.el
View file @
57e81f57
...
...
@@ -244,7 +244,11 @@ and ignores this variable.")
(
defun
ange-ftp-completion-hook-function
(
op
&rest
args
)
(
if
(
memq
op
'
(
file-name-completion
file-name-all-completions
))
(
apply
'ange-ftp-hook-function
op
args
)
(
let
(
file-name-handler-alist
)
(
let
((
inhibit-file-name-handlers
(
cons
'ange-ftp-completion-hook-function
(
and
(
eq
inhibit-file-name-operation
op
)
inhibit-file-name-handlers
)))
(
inhibit-file-name-operation
op
))
(
apply
op
args
))))
(
defun
pwd
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment