Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1875d994
Commit
1875d994
authored
Apr 18, 1994
by
Francesco Potortì
Browse files
* etags.c (absolute_filename): compare against '\0' instead of NULL.
parent
2cb90195
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib-src/etags.c
lib-src/etags.c
+2
-2
No files found.
lib-src/etags.c
View file @
1875d994
...
...
@@ -28,7 +28,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
* 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 @@ absolute_filename (file, cwd)
}
else
/* else (cp == res) */
{
if
(
slashp
[
3
]
!=
NULL
)
if
(
slashp
[
3
]
!=
'\0'
)
strcpy
(
cp
,
slashp
+
4
);
else
return
"."
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment