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 ();


_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs

Reply via email to