XEmacs 21.2.28 "Hermes".
authortomo <tomo>
Tue, 2 May 2000 08:52:41 +0000 (08:52 +0000)
committertomo <tomo>
Tue, 2 May 2000 08:52:41 +0000 (08:52 +0000)
src/mule-mcpath.c
src/s/msdos.h

index ce7d257..9ab81a6 100644 (file)
@@ -32,7 +32,7 @@ Boston, MA 02111-1307, USA.  */
 Lisp_Object Qpathname_coding_system = 0;
 
 static void
-mcpath_encode_code (struct Lisp_Coding_System *cp)
+mcpath_encode_code (Lisp_Coding_System *cp)
 {
   Lisp_Object coding_system;
 
@@ -46,7 +46,7 @@ static int
 mule_encode_path_1 (unsigned char *src, unsigned int srcsize,
                    unsigned char *dst, unsigned int dstsize)
 {
-  struct Lisp_Coding_System code;
+  Lisp_Coding_System code;
 
   mcpath_encode_code (&code);
   if (CODE_TYPE (&code) > MULE_AUTOCONV)
@@ -76,7 +76,7 @@ static unsigned char *
 mule_decode_path_1 (unsigned char *src, unsigned char *dst,
                    unsigned int dstsize)
 {
-  struct Lisp_Coding_System code;
+  Lisp_Coding_System code;
 
   mcpath_encode_code (&code);
   if (CODE_TYPE (&code) > MULE_AUTOCONV)
@@ -239,13 +239,13 @@ unsigned char *
 mc_getwd (unsigned char path[])
 {
   unsigned char *p;
+
   p = getwd (path);
   if (p)
     {
       unsigned char buffer[MC_MAXPATHLEN];
       int len;
-      
+
       len = mule_encode_path_1 (path, strlen (path) + 1, buffer, sizeof buffer);
       if (len > 0)
        {
index 5f857c3..ad8694a 100644 (file)
@@ -189,11 +189,6 @@ You lose; /* Emacs for DOS must be compiled with DJGPP */
 #define tzset init_gettimeofday
 #endif
 
-/* bcopy under djgpp is quite safe */
-#define GAP_USE_BCOPY
-#define BCOPY_UPWARD_SAFE 1
-#define BCOPY_DOWNWARD_SAFE 1
-
 /* Mode line description of a buffer's type.  */
 #define MODE_LINE_BINARY_TEXT(buf) (NILP(buf->buffer_file_type) ? "T" : "B")