aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 52a62cebe9c..9b611bb7fd1 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -6118,7 +6118,7 @@ DEFUN ("read-file-name-internal", Fread_file_name_internal, Sread_file_name_inte
6118 Lisp_Object tem = XCAR (all); 6118 Lisp_Object tem = XCAR (all);
6119 int len; 6119 int len;
6120 if (STRINGP (tem) && 6120 if (STRINGP (tem) &&
6121 (len = SCHARS (tem), len > 0) && 6121 (len = SBYTES (tem), len > 0) &&
6122 IS_DIRECTORY_SEP (SREF (tem, len-1))) 6122 IS_DIRECTORY_SEP (SREF (tem, len-1)))
6123 comp = Fcons (tem, comp); 6123 comp = Fcons (tem, comp);
6124 } 6124 }