diff options
| author | Ken Raeburn | 2002-07-15 00:01:34 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-15 00:01:34 +0000 |
| commit | d5db40779d7505244d37476b4f046641f07eea2b (patch) | |
| tree | 5c8bf4dad41639287e722cb7cbdc0709e47a9e53 /src/w32.c | |
| parent | 491c2516d32fa8b9ba9422ec142c8925dd82af00 (diff) | |
| download | emacs-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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, |