home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / lucid / bug-lucid-emacs / text0046.txt < prev    next >
Encoding:
Text File  |  1993-07-04  |  804 b   |  24 lines

  1. This is a bug in Ange-FTP triggered by a change in semantics of try-completion
  2. in version 19 ELisp. try-completion now allows the "alist" parameter to be a
  3. function. If that parameter doesn't look like either of the other possibilities
  4. (assoc list or obarray), it tries apply'ing it (or thereabouts), yielding a
  5. bad-function error.
  6.  
  7. My patch is only slightly different. I sent it to the authors of Ange-FTP; they
  8. said they would include it in the next release. The following is a diff on 19.4
  9. elisp sources, if that makes any difference.
  10.  
  11. diff ange-ftp.el ange-ftp.el-DIST
  12. 1293c1293
  13. <       (or res nil))))
  14. ---
  15. >       (or res (list nil)))))
  16.  
  17. --------------------------------
  18. Robert M. Fuhrer
  19. IBM T. J. Watson Research Center
  20. Yorktown Heights, NY 10598
  21. 32-243      (914) 945-3830
  22. rfuhrer@watson.ibm.com
  23.  
  24.