]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct Lisp_Buffer_Cons): Remove.
authorGerd Moellmann <gerd@gnu.org>
Fri, 21 Apr 2000 13:00:58 +0000 (13:00 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 21 Apr 2000 13:00:58 +0000 (13:00 +0000)
src/lisp.h

index e6b91f6db65919beb33dc2aa8e8a5db457a4ace2..3d9be2759312b222cc1c211b45517496aeb055c0 100644 (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)