0.98-4 has a small problem with symbolic links. Please apply the following patch to jed/src/file.c: --- release/jed/src/file.c Thu Jan 30 09:50:38 1997 +++ jed/src/file.c Fri Feb 7 14:28:48 1997 @@ -1081,7 +1081,7 @@ /* If the link is an absolute pathname (starts with /) then the * ../ prefix should not go there. */ - if (*f1 == '/') + if (is_dir && (*f1 == '/')) { char ch; @@ -1110,7 +1110,7 @@ char *d = expand_filename(f); - if (is_link(d, lnk)) + while (is_link(d, lnk)) { char *w, *w1, ch;