From c782ad7a64166e2db58185799f3a5a9f9f625c7e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 3 Jan 1999 16:36:41 +0000 Subject: [PATCH] Delete #if 0 old definitions. --- src/lisp.h | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/lisp.h b/src/lisp.h index cd3226b6b97..f8b8a76f1bb 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -545,20 +545,6 @@ struct Lisp_Buffer_Cons int bufpos; }; -#if 0 - -/* Nonzero if STR is a multibyte string. */ -#define STRING_MULTIBYTE(STR) \ - (XSTRING (STR)->size_byte != XSTRING (STR)->size) - -/* Return the length in bytes of STR. */ -#define STRING_BYTES(STR) ((STR)->size_byte + 0) - -/* Set the length in bytes of STR. */ -#define SET_STRING_BYTES(STR, SIZE) ((STR)->size_byte = (SIZE)) - -#else - /* Nonzero if STR is a multibyte string. */ #define STRING_MULTIBYTE(STR) \ (XSTRING (STR)->size_byte >= 0) @@ -570,8 +556,6 @@ struct Lisp_Buffer_Cons /* Set the length in bytes of STR. */ #define SET_STRING_BYTES(STR, SIZE) ((STR)->size_byte = (SIZE)) -#endif /* 0 */ - /* In a string or vector, the sign bit of the `size' is the gc mark bit */ struct Lisp_String -- 2.39.2