]> git.eshelyaron.com Git - emacs.git/commitdiff
Delete #if 0 old definitions.
authorRichard M. Stallman <rms@gnu.org>
Sun, 3 Jan 1999 16:36:41 +0000 (16:36 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 3 Jan 1999 16:36:41 +0000 (16:36 +0000)
src/lisp.h

index cd3226b6b97109e99c8081b6294d401582d2bdf4..f8b8a76f1bb9ab886a576eca6d82d45a2e49da46 100644 (file)
@@ -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