aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32.c
diff options
context:
space:
mode:
authorKen Raeburn2002-07-15 00:01:34 +0000
committerKen Raeburn2002-07-15 00:01:34 +0000
commitd5db40779d7505244d37476b4f046641f07eea2b (patch)
tree5c8bf4dad41639287e722cb7cbdc0709e47a9e53 /src/w32.c
parent491c2516d32fa8b9ba9422ec142c8925dd82af00 (diff)
downloademacs-d5db40779d7505244d37476b4f046641f07eea2b.tar.gz
emacs-d5db40779d7505244d37476b4f046641f07eea2b.zip
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
SCHARS, SBYTES, STRING_INTERVALS, SREF, SDATA; explicit size_byte references left unchanged for now.
Diffstat (limited to 'src/w32.c')
-rw-r--r--src/w32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32.c b/src/w32.c
index b789bb47e52..7a31e78d1da 100644
--- a/src/w32.c
+++ b/src/w32.c
@@ -3581,8 +3581,8 @@ check_windows_init_file ()
3581 if (fd < 0) 3581 if (fd < 0)
3582 { 3582 {
3583 Lisp_Object load_path_print = Fprin1_to_string (full_load_path, Qnil); 3583 Lisp_Object load_path_print = Fprin1_to_string (full_load_path, Qnil);
3584 char *init_file_name = XSTRING (init_file)->data; 3584 char *init_file_name = SDATA (init_file);
3585 char *load_path = XSTRING (load_path_print)->data; 3585 char *load_path = SDATA (load_path_print);
3586 char *buffer = alloca (1024); 3586 char *buffer = alloca (1024);
3587 3587
3588 sprintf (buffer, 3588 sprintf (buffer,