diff options
| author | Richard M. Stallman | 1999-01-03 16:36:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-01-03 16:36:41 +0000 |
| commit | c782ad7a64166e2db58185799f3a5a9f9f625c7e (patch) | |
| tree | 1fb00adfbed419a26dfbe8afc862f77101c5d23a /src | |
| parent | f91fe6045daa4157db44a7fd11fd91f209778ee6 (diff) | |
| download | emacs-c782ad7a64166e2db58185799f3a5a9f9f625c7e.tar.gz emacs-c782ad7a64166e2db58185799f3a5a9f9f625c7e.zip | |
Delete #if 0 old definitions.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 16 |
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 | ||
| 577 | struct Lisp_String | 561 | struct Lisp_String |