diff options
| author | Gerd Moellmann | 2000-04-21 13:00:58 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-04-21 13:00:58 +0000 |
| commit | d47f18ca7665867c88d1f53fba381689b22a3bc6 (patch) | |
| tree | 0c9ac7eebf99ac896bfddbfe332ca43e57c9bfa0 /src | |
| parent | 79dd1637f13a80f4db19035fdea9f6d9b8c2a8ed (diff) | |
| download | emacs-d47f18ca7665867c88d1f53fba381689b22a3bc6.tar.gz emacs-d47f18ca7665867c88d1f53fba381689b22a3bc6.zip | |
(struct Lisp_Buffer_Cons): Remove.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/lisp.h b/src/lisp.h index e6b91f6db65..3d9be275931 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -601,16 +601,6 @@ struct Lisp_Cons | |||
| 601 | : NILP ((c)) ? Qnil \ | 601 | : NILP ((c)) ? Qnil \ |
| 602 | : wrong_type_argument (Qlistp, (c))) | 602 | : wrong_type_argument (Qlistp, (c))) |
| 603 | 603 | ||
| 604 | /* Like a cons, but records info on where the text lives that it was read from */ | ||
| 605 | /* This is not really in use now */ | ||
| 606 | |||
| 607 | struct Lisp_Buffer_Cons | ||
| 608 | { | ||
| 609 | Lisp_Object car, cdr; | ||
| 610 | struct buffer *buffer; | ||
| 611 | int bufpos; | ||
| 612 | }; | ||
| 613 | |||
| 614 | /* Nonzero if STR is a multibyte string. */ | 604 | /* Nonzero if STR is a multibyte string. */ |
| 615 | #define STRING_MULTIBYTE(STR) \ | 605 | #define STRING_MULTIBYTE(STR) \ |
| 616 | (XSTRING (STR)->size_byte >= 0) | 606 | (XSTRING (STR)->size_byte >= 0) |