emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/fileio.c


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/src/fileio.c
Date: Sun, 28 Jul 2002 21:29:05 -0400

Index: emacs/src/fileio.c
diff -c emacs/src/fileio.c:1.458 emacs/src/fileio.c:1.459
*** emacs/src/fileio.c:1.458    Fri Jul 19 12:30:03 2002
--- emacs/src/fileio.c  Fri Jul 19 17:22:14 2002
***************
*** 602,608 ****
    /* For Unix syntax, Append a slash if necessary */
    if (!IS_DIRECTORY_SEP (out[size]))
      {
!       out[size + 1] = DIRECTORY_SEP;
        out[size + 2] = '\0';
      }
  #ifdef DOS_NT
--- 602,609 ----
    /* For Unix syntax, Append a slash if necessary */
    if (!IS_DIRECTORY_SEP (out[size]))
      {
!       /* Cannot use DIRECTORY_SEP, which could have any value */
!       out[size + 1] = '/';
        out[size + 2] = '\0';
      }
  #ifdef DOS_NT



reply via email to

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