Re: rcp.el, XEmacs and colons

2000-05-21 Thread Dave Love
"KG" == Kai Großjohann [EMAIL PROTECTED] writes: KG Rumor has it that EFS groks exotic remote hosts, too. EFS supports more servers than does ange-ftp. (If people contribute clean ange-ftp support for more servers we'll install it.) KG Support for them was deleted from ange-ftp upon

Re: rcp.el, XEmacs and colons

2000-05-21 Thread Kai Großjohann
Dave Love [EMAIL PROTECTED] writes: Rubbish. Please don't peddle this story; Sorry. kai -- Beware of flying birch trees.

Re: rcp.el, XEmacs and colons

2000-05-16 Thread Pete Forman
Kai Großjohann writes: Pete Forman [EMAIL PROTECTED] writes: The efs.el that ships with XEmacs 21 no longer overloads expand- file-name. It does still overload load and so things like load-file still fail. It is normal for load-file to fail, since the `load' file name

Re: rcp.el, XEmacs and colons

2000-05-16 Thread Kai Großjohann
Pete Forman [EMAIL PROTECTED] writes: (if (fboundp 'efs-file-handler-function) ; test for a standard autoload (require 'efs)) How about putting that into rcp.el? Sounds good. Yes, this is the right thing to do. In a moment... done. If one of you XEmacs users would like to test this

Re: rcp.el, XEmacs and colons

2000-05-16 Thread Pete Forman
Stefan Monnier writes: "Pete" == Pete Forman [EMAIL PROTECTED] writes: (defvar running-xemacs (string-match "XEmacs\\|Lucid" emacs-version)) (if running-xemacs (require 'efs)) Parsing `emacs-version' is *evil* ! Why not do something like

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Pete Forman
Daniel Pittman writes: On Fri, 12 May 2000, Kai Großjohann [EMAIL PROTECTED] wrote: Pete says that colons in rcp-file-format don't work for him, whereas Francisco and Daniel say they work fine. What can we do to find out why the colons don't work for Pete? The XEmacs

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Kai Großjohann
Pete Forman [EMAIL PROTECTED] writes: I'm also getting "Symbol's function definition is void: process- coding-system". Is this fixed yet? Yes, it checks if the function is bound and uses `stty -onlcr' if it isn't. kai -- Beware of flying birch trees.

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Stefan Monnier
"Pete" == Pete Forman [EMAIL PROTECTED] writes: (defvar running-xemacs (string-match "XEmacs\\|Lucid" emacs-version)) (if running-xemacs (require 'efs)) Parsing `emacs-version' is *evil* ! Why not do something like (condition-case () (require 'efs) (error nil)) or

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Pete Forman
Pete Forman writes: I'm also getting "Symbol's function definition is void: process- coding-system". Is this fixed yet? I'm again having trouble downloading the latest rcp.el. Okay, I've at last managed to get 1.315. This now requires format-spec. I can't find that in XEmacs or Emacs

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Daniel Pittman
On Mon, 15 May 2000, Pete Forman [EMAIL PROTECTED] wrote: Daniel Pittman writes: Hrm and double hrm. Can you give a simple recipe for reproducing the issue? I had a quick glance in my archives of the list but didn't find anything. (expand-file-name "/r:morse:.vm") A stack trace

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Pete Forman
Daniel Pittman writes: I have used it right up until recently when the coding system stuff started playing up on me. I'm also getting "Symbol's function definition is void: process- coding-system". Is this fixed yet? I'm again having trouble downloading the latest rcp.el. Or is there a

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Kai Großjohann
Pete Forman [EMAIL PROTECTED] writes: Mea culpa, but a comment by the require statement would have helped. Thanks. The comment will show up whenever I generate the next tar ball. It's in CVS already. kai -- Beware of flying birch trees.

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Pete Forman
Pete Forman writes: Daniel Pittman writes: Pete, are you running the Windows version of XEmacs? No. XEmacs 21.1.7 on AIX 4.3.2 and IRIX 6.5.5m, and 20.4 on Solaris 2.6. I have yet to upgrade to XEmacs 21.1.10 but I've just pulled efs.el from cvs.xemacs.org. The overloading

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Daniel Pittman
On Mon, 15 May 2000, Pete Forman [EMAIL PROTECTED] wrote: Daniel Pittman writes: On Fri, 12 May 2000, Kai Großjohann [EMAIL PROTECTED] wrote: Pete says that colons in rcp-file-format don't work for him, whereas Francisco and Daniel say they work fine. What can we do to

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Kai Großjohann
Pete Forman [EMAIL PROTECTED] writes: The efs.el that ships with XEmacs 21 no longer overloads expand-file- name. It does still overload load and so things like load-file still fail. Hm. I had a cursory glance at the stuff that EFS (from XEmacs 21.1.10) is doing there, and I don't think I

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Kai Großjohann
Pete Forman [EMAIL PROTECTED] writes: The efs.el that ships with XEmacs 21 no longer overloads expand-file- name. It does still overload load and so things like load-file still fail. It is normal for load-file to fail, since the `load' file name handler operation isn't implemented yet.

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Stefan Monnier
"Kai" == Kai Großjohann [EMAIL PROTECTED] writes: Did you (require 'rcp) before (require 'efs)? Or vice versa? You should be doing (require 'efs) before (require 'rcp). And jka-compr should be activated after all of those. I think something should be done regarding the ordering on the

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Pete Forman
Daniel Pittman writes: Hrm and double hrm. Can you give a simple recipe for reproducing the issue? I had a quick glance in my archives of the list but didn't find anything. (expand-file-name "/r:morse:.vm") A stack trace for the ftp error induced is in a message dated Fri, 29 Oct 1999

Re: rcp.el, XEmacs and colons

2000-05-15 Thread Kai Großjohann
Pete Forman [EMAIL PROTECTED] writes: I have yet to upgrade to XEmacs 21.1.10 but I've just pulled efs.el from cvs.xemacs.org. The overloading code that is giving me grief is still the same. Did you (require 'rcp) before (require 'efs)? Or vice versa? You should be doing (require 'efs)

rcp.el, XEmacs and colons

2000-05-12 Thread Kai Großjohann
Pete says that colons in rcp-file-format don't work for him, whereas Francisco and Daniel say they work fine. What can we do to find out why the colons don't work for Pete? The XEmacs versions used: PeteXEmacs 21.1.7 Fransisco 21.1 (patch 8) "Bryce Canyon" XEmacs Lucid Daniel

Re: rcp.el, XEmacs and colons

2000-05-12 Thread Daniel Pittman
On Fri, 12 May 2000, Kai Großjohann [EMAIL PROTECTED] wrote: Pete says that colons in rcp-file-format don't work for him, whereas Francisco and Daniel say they work fine. What can we do to find out why the colons don't work for Pete? The XEmacs versions used: PeteXEmacs