]> git.eshelyaron.com Git - emacs.git/commitdiff
Ignore some handlers in ange-ftp.el
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 19 Dec 2022 09:23:14 +0000 (10:23 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 19 Dec 2022 09:23:14 +0000 (10:23 +0100)
* lisp/net/ange-ftp.el: Return nil for `file-acl',
`file-notify-add-watch', `file-notify-rm-watch',
`file-notify-valid-p', `file-system-info',
`list-system-processes', `memory-info', `process-attributes',
`set-file-acl', `set-file-selinux-context'.

lisp/net/ange-ftp.el

index 6e17e417ea35de6c1aa2edc68b7db82a962a1a89..9781ebf863a8cbea8916c36a1df8ccc24656642b 100644 (file)
@@ -4498,6 +4498,25 @@ NEWNAME should be the name to give the new compressed or uncompressed file.")
 (put 'process-file 'ange-ftp 'ange-ftp-process-file)
 (put 'start-file-process 'ange-ftp 'ignore)
 (put 'shell-command 'ange-ftp 'ange-ftp-shell-command)
+
+;; Do not execute system information functions.
+(put 'file-system-info 'ange-ftp 'ignore)
+(put 'list-system-processes 'ange-ftp 'ignore)
+(put 'memory-info 'ange-ftp 'ignore)
+(put 'process-attributes 'ange-ftp 'ignore)
+
+;; There aren't ACLs.  `file-selinux-context' shall return '(nil nil
+;; nil nil) if the file is nonexistent, so we let the default file
+;; name handler do the job.
+(put 'file-acl 'ange-ftp 'ignore)
+;; (put 'file-selinux-context 'ange-ftp 'ignore)
+(put 'set-file-acl 'ange-ftp 'ignore)
+(put 'set-file-selinux-context 'ange-ftp 'ignore)
+
+;; There aren't file notifications.
+(put 'file-notify-add-watch 'ange-ftp 'ignore)
+(put 'file-notify-rm-watch 'ange-ftp 'ignore)
+(put 'file-notify-valid-p 'ange-ftp 'ignore)
 \f
 ;;; Define ways of getting at unmodified Emacs primitives,
 ;;; turning off our handler.