Re: EFS 1.14 bug: dired problem under xemacs 19.12?
Andy Norman (ange@hplb.hpl.hp.com)
Mon, 07 Aug 1995 14:11:41 +0100
Brad writes:
> Whenever I'm in dired mode, to a remote site, and I try either 'f' or 'v' on
> a file I always get this error the first time. The second time the file
> pops right up.
This is an interaction between 1.14 and XEmacs 19.12+. Perhaps this patch
will help.
-- ange -- <><
ange@hplb.hpl.hp.com
--- efs.el~ Mon Aug 7 14:09:19 1995
+++ efs.el Mon Aug 7 14:09:19 1995
@@ -8357,9 +8357,9 @@
(efs-save-match-data
(or (string-match "^550 " line)
(efs-set-host-property host 'mdtm-failed t)))
- (efs-set-emacs-bvf-mdtm buffer 0)))) ; store dummy values
+ (efs-set-emacs-bvf-mdtm buffer '(0 0))))) ; store dummy values
0) ; Always do this NOWAIT = 0
- (efs-set-emacs-bvf-mdtm buffer 0))
+ (efs-set-emacs-bvf-mdtm buffer '(0 0)))
nil) ; return NIL
))