aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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)