aboutsummaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c
index c5bff5b8153..769a719191e 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2226,8 +2226,8 @@ duplicates what `expand-file-name' does. */)
2226 /* Get variable value */ 2226 /* Get variable value */
2227 o = (unsigned char *) egetenv (target); 2227 o = (unsigned char *) egetenv (target);
2228 if (o) 2228 if (o)
2229 { 2229 { /* Eight-bit chars occupy upto 2 bytes in multibyte. */
2230 total += strlen (o); 2230 total += strlen (o) * (STRING_MULTIBYTE (filename) ? 2 : 1);
2231 substituted = 1; 2231 substituted = 1;
2232 } 2232 }
2233 else if (*p == '}') 2233 else if (*p == '}')