home *** CD-ROM | disk | FTP | other *** search
- This is a bug in Ange-FTP triggered by a change in semantics of try-completion
- in version 19 ELisp. try-completion now allows the "alist" parameter to be a
- function. If that parameter doesn't look like either of the other possibilities
- (assoc list or obarray), it tries apply'ing it (or thereabouts), yielding a
- bad-function error.
-
- My patch is only slightly different. I sent it to the authors of Ange-FTP; they
- said they would include it in the next release. The following is a diff on 19.4
- elisp sources, if that makes any difference.
-
- diff ange-ftp.el ange-ftp.el-DIST
- 1293c1293
- < (or res nil))))
- ---
- > (or res (list nil)))))
-
- --------------------------------
- Robert M. Fuhrer
- IBM T. J. Watson Research Center
- Yorktown Heights, NY 10598
- 32-243 (914) 945-3830
- rfuhrer@watson.ibm.com
-
-