1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(struct Lisp_Buffer_Cons): Remove.

This commit is contained in:
Gerd Moellmann 2000-04-21 13:00:58 +00:00
parent 79dd1637f1
commit d47f18ca76

View File

@ -601,16 +601,6 @@ struct Lisp_Cons
: NILP ((c)) ? Qnil \
: wrong_type_argument (Qlistp, (c)))
/* Like a cons, but records info on where the text lives that it was read from */
/* This is not really in use now */
struct Lisp_Buffer_Cons
{
Lisp_Object car, cdr;
struct buffer *buffer;
int bufpos;
};
/* Nonzero if STR is a multibyte string. */
#define STRING_MULTIBYTE(STR) \
(XSTRING (STR)->size_byte >= 0)