diff options
author | Eli Zaretskii <eliz@gnu.org> | 2004-04-26 10:49:11 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2004-04-26 10:49:11 +0000 |
commit | b09c560845ae108ac90675000eeacc2add6eb2b5 (patch) | |
tree | b18f7a5ad968a5767df4000ab60a6134f818da47 /lib-src/make-docfile.c | |
parent | 9eca7c03d8fd9f2aa8023396c5c9e06a02909722 (diff) | |
download | emacs-b09c560845ae108ac90675000eeacc2add6eb2b5.tar.gz emacs-b09c560845ae108ac90675000eeacc2add6eb2b5.tar.bz2 emacs-b09c560845ae108ac90675000eeacc2add6eb2b5.zip |
(IS_DIRECTORY_SEP): New macro.
(put_filename): Remove unused variable len. Use IS_DIRECTORY_SEP
instead of a literal '/'.
Diffstat (limited to 'lib-src/make-docfile.c')
-rw-r--r-- | lib-src/make-docfile.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index ba73f5800a7..1c0bc559225 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c @@ -60,6 +60,10 @@ Boston, MA 02111-1307, USA. */ #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 (); @@ -183,11 +187,13 @@ void 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); |