aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1999-01-03 16:36:41 +0000
committerRichard M. Stallman1999-01-03 16:36:41 +0000
commitc782ad7a64166e2db58185799f3a5a9f9f625c7e (patch)
tree1fb00adfbed419a26dfbe8afc862f77101c5d23a /src
parentf91fe6045daa4157db44a7fd11fd91f209778ee6 (diff)
downloademacs-c782ad7a64166e2db58185799f3a5a9f9f625c7e.tar.gz
emacs-c782ad7a64166e2db58185799f3a5a9f9f625c7e.zip
Delete #if 0 old definitions.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h16
1 files changed, 0 insertions, 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
545 int bufpos; 545 int bufpos;
546 }; 546 };
547 547
548#if 0
549
550/* Nonzero if STR is a multibyte string. */
551#define STRING_MULTIBYTE(STR) \
552 (XSTRING (STR)->size_byte != XSTRING (STR)->size)
553
554/* Return the length in bytes of STR. */
555#define STRING_BYTES(STR) ((STR)->size_byte + 0)
556
557/* Set the length in bytes of STR. */
558#define SET_STRING_BYTES(STR, SIZE) ((STR)->size_byte = (SIZE))
559
560#else
561
562/* Nonzero if STR is a multibyte string. */ 548/* Nonzero if STR is a multibyte string. */
563#define STRING_MULTIBYTE(STR) \ 549#define STRING_MULTIBYTE(STR) \
564 (XSTRING (STR)->size_byte >= 0) 550 (XSTRING (STR)->size_byte >= 0)
@@ -570,8 +556,6 @@ struct Lisp_Buffer_Cons
570/* Set the length in bytes of STR. */ 556/* Set the length in bytes of STR. */
571#define SET_STRING_BYTES(STR, SIZE) ((STR)->size_byte = (SIZE)) 557#define SET_STRING_BYTES(STR, SIZE) ((STR)->size_byte = (SIZE))
572 558
573#endif /* 0 */
574
575/* In a string or vector, the sign bit of the `size' is the gc mark bit */ 559/* In a string or vector, the sign bit of the `size' is the gc mark bit */
576 560
577struct Lisp_String 561struct Lisp_String