From d47f18ca7665867c88d1f53fba381689b22a3bc6 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 21 Apr 2000 13:00:58 +0000 Subject: [PATCH] (struct Lisp_Buffer_Cons): Remove. --- src/lisp.h | 10 ---------- 1 file changed, 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 : 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)