emacs 19.23 and efs-1.6: find-file-name-handler
John Ladwig (jladwig@soils.umn.edu)
Wed, 18 May 94 09:51:19 CDT
Appended is a patch to vm-5.68 which Kyle Jones uses to cover for the
changes in emacs 19.23.
Is there a similar recommendation/patch for efs-1.6 and/or the
enhanced dired in the EFS package?
-jml
***************
*** 2200,2202 ****
(let ((handler (and (fboundp 'find-file-name-handler)
! (find-file-name-handler source)))
status error-buffer)
--- 2214,2219 ----
(let ((handler (and (fboundp 'find-file-name-handler)
! (condition-case ()
! (find-file-name-handler source nil)
! (wrong-number-of-arguments
! (find-file-name-handler source)))))
status error-buffer)