(put_filename): Remove unused variable len. Use IS_DIRECTORY_SEP
instead of a literal '/'.
+2004-04-26 Eli Zaretskii <eliz@gnu.org>
+
+ * make-docfile.c (IS_DIRECTORY_SEP): New macro.
+ (put_filename): Remove unused variable len. Use IS_DIRECTORY_SEP
+ instead of a literal '/'.
+
2004-04-23 Juanma Barranquero <lektu@terra.es>
* makefile.w32-in: Add "-*- makefile -*-" mode tag.
#define READ_BINARY "r"
#endif /* not DOS_NT */
+#ifndef IS_DIRECTORY_SEP
+#define IS_DIRECTORY_SEP(_c_) ((_c_) == '/')
+#endif
+
int scan_file ();
int scan_lisp_file ();
int scan_c_file ();
put_filename (filename)
char *filename;
{
- char *tmp = filename;
- int len;
-
- while ((tmp = index (filename, '/')))
- filename = tmp + 1;
+ char *tmp;
+
+ for (tmp = filename; *tmp; tmp++)
+ {
+ if (IS_DIRECTORY_SEP(*tmp))
+ filename = tmp + 1;
+ }
putc (037, outfile);
putc ('S', outfile);