changeset 23984:2bc2b506f787

Delete #if 0 old definitions.
author Richard M. Stallman <rms@gnu.org>
date Sun, 03 Jan 1999 16:36:41 +0000
parents f81108c27669
children 9cdc05332687
files src/lisp.h
diffstat 1 files changed, 0 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- 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