aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-04-21 13:00:58 +0000
committerGerd Moellmann2000-04-21 13:00:58 +0000
commitd47f18ca7665867c88d1f53fba381689b22a3bc6 (patch)
tree0c9ac7eebf99ac896bfddbfe332ca43e57c9bfa0 /src
parent79dd1637f13a80f4db19035fdea9f6d9b8c2a8ed (diff)
downloademacs-d47f18ca7665867c88d1f53fba381689b22a3bc6.tar.gz
emacs-d47f18ca7665867c88d1f53fba381689b22a3bc6.zip
(struct Lisp_Buffer_Cons): Remove.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h10
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
607struct 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)