Mercurial > emacs
diff src/filelock.c @ 21244:50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 21 Mar 1998 07:06:14 +0000 |
| parents | 7f00d0edbd29 |
| children | edf1091d8a60 |
line wrap: on
line diff
--- a/src/filelock.c Sat Mar 21 06:16:35 1998 +0000 +++ b/src/filelock.c Sat Mar 21 07:06:14 1998 +0000 @@ -129,7 +129,7 @@ /* Write the name of the lock file for FN into LFNAME. Length will be that of FN plus two more for the leading `.#' plus one for the null. */ #define MAKE_LOCK_NAME(lock, file) \ - (lock = (char *) alloca (XSTRING (file)->size_byte + 2 + 1), \ + (lock = (char *) alloca (STRING_BYTES (XSTRING (file)) + 2 + 1), \ fill_in_lock_file_name (lock, (file))) static void
