From: Richard M. Stallman Date: Sun, 3 Jan 1999 16:36:41 +0000 (+0000) Subject: Delete #if 0 old definitions. X-Git-Tag: emacs-20.4~965 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c782ad7a64166e2db58185799f3a5a9f9f625c7e;p=emacs.git Delete #if 0 old definitions. --- 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