emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lib-src/make-docfile.c


From: YAMAMOTO Mitsuharu
Subject: [Emacs-diffs] Changes to emacs/lib-src/make-docfile.c
Date: Fri, 13 May 2005 04:53:17 -0400

Index: emacs/lib-src/make-docfile.c
diff -c emacs/lib-src/make-docfile.c:1.62 emacs/lib-src/make-docfile.c:1.63
*** emacs/lib-src/make-docfile.c:1.62   Fri Mar  4 11:14:03 2005
--- emacs/lib-src/make-docfile.c        Fri May 13 08:53:17 2005
***************
*** 60,67 ****
  #define READ_BINARY "r"
  #endif /* not DOS_NT */
  
  #ifndef IS_DIRECTORY_SEP
! #define IS_DIRECTORY_SEP(_c_) ((_c_) == '/')
  #endif
  
  int scan_file ();
--- 60,75 ----
  #define READ_BINARY "r"
  #endif /* not DOS_NT */
  
+ #ifndef DIRECTORY_SEP
+ #ifdef MAC_OS8
+ #define DIRECTORY_SEP ':'
+ #else  /* not MAC_OS8 */
+ #define DIRECTORY_SEP '/'
+ #endif        /* not MAC_OS8 */
+ #endif
+ 
  #ifndef IS_DIRECTORY_SEP
! #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
  #endif
  
  int scan_file ();




reply via email to

[Prev in Thread] Current Thread [Next in Thread]