Mercurial > emacs
changeset 6944:daa29eabfc65
* etags.c (absolute_filename): compare against '\0' instead of NULL.
author | Francesco Potortì <pot@gnu.org> |
---|---|
date | Mon, 18 Apr 1994 10:54:42 +0000 |
parents | c41c87311f68 |
children | 63ab519f7057 |
files | lib-src/etags.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/etags.c Mon Apr 18 04:03:17 1994 +0000 +++ b/lib-src/etags.c Mon Apr 18 10:54:42 1994 +0000 @@ -28,7 +28,7 @@ * Francesco Potorti` (pot@cnuce.cnr.it) is the current maintainer. */ -char pot_etags_version[] = "@(#) pot revision number is 10.29"; +char pot_etags_version[] = "@(#) pot revision number is 10.31"; #ifdef MSDOS #include <fcntl.h> @@ -3235,7 +3235,7 @@ } else /* else (cp == res) */ { - if (slashp[3] != NULL) + if (slashp[3] != '\0') strcpy (cp, slashp + 4); else return ".";