From: Richard M. Stallman Date: Tue, 2 Apr 1996 15:39:19 +0000 (+0000) Subject: (absolute_filename): Use absolutefn. X-Git-Tag: emacs-19.34~936 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b4bcc0c4a8b1cdde0849e3cd24f69d4e9a535050;p=emacs.git (absolute_filename): Use absolutefn. --- diff --git a/lib-src/etags.c b/lib-src/etags.c index 77975c625aa..8463e01443e 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -4425,7 +4425,7 @@ absolute_filename (file, cwd) cp = slashp; do cp--; - while (cp >= res && *cp != '/'); + while (cp >= res && !absolutefn (cp)); if (*cp == '/') { strcpy (cp, slashp + 3);