# HG changeset patch # User Richard M. Stallman # Date 915381401 0 # Node ID 2bc2b506f7878fc10e12b6513a2646e43dfa48a8 # Parent f81108c276694f4c405d9abcf863cbae1803a16c Delete #if 0 old definitions. diff -r f81108c27669 -r 2bc2b506f787 src/lisp.h --- a/src/lisp.h Sun Jan 03 15:03:32 1999 +0000 +++ b/src/lisp.h Sun Jan 03 16:36:41 1999 +0000 @@ -545,20 +545,6 @@ 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 @@ /* 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