On Tue, Jun 4, 2019 at 10:43 AM Van L <[email protected]> wrote: > > > > On 3 Jun 2019, at 22:46, Robert Weiner <[email protected]> wrote: > > > > We will have a look and get it resolved for the next release. Thanks for > > pointing it out. > > Also, when I press 'Action Key' on > > "/i/src/sys/kern/kern_sig.c:127" > > the message area prepends relative path elements '../../../../../mnt' to > the absolute path to file I have quoted and says 'does not exist' . > > That '/i/src' directory links to NFS exported directory.
Try this fix and report back: Change old line "hpath.el:1045": (let ((remote-path (string-match "@.+:\\|^/.+:\\|..+:/" path))) To new line "hpath.el:1045": (let ((remote-path (string-match "\\(@.+:\\|^/.+:\\|..+:/\\).*[^:0-9/]" path))) Re-evaluate that function and re-byte-compile the file. -- Bob
