# HG changeset patch # User Joseph Arceneaux # Date 717904737 0 # Node ID 95ae0805ebba723c62692784adcf53c448a9b679 # Parent d9a103f4843eca2ba10f3b4d7125af3cfe0bd6f8 Qbuffer_or_string_p added. diff -r d9a103f4843e -r 95ae0805ebba src/data.c --- a/src/data.c Thu Oct 01 01:52:09 1992 +0000 +++ b/src/data.c Thu Oct 01 01:58:57 1992 +0000 @@ -45,6 +45,7 @@ Lisp_Object Qintegerp, Qnatnump, Qsymbolp, Qlistp, Qconsp; Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp; Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp; +Lisp_Object Qbuffer_or_string_p; Lisp_Object Qboundp, Qfboundp; Lisp_Object Qcdr; @@ -1859,6 +1860,7 @@ Qvectorp = intern ("vectorp"); Qchar_or_string_p = intern ("char-or-string-p"); Qmarkerp = intern ("markerp"); + Qbuffer_or_string_p = intern ("buffer-or-string-p"); Qinteger_or_marker_p = intern ("integer-or-marker-p"); Qboundp = intern ("boundp"); Qfboundp = intern ("fboundp"); @@ -1998,6 +2000,7 @@ staticpro (&Qvectorp); staticpro (&Qchar_or_string_p); staticpro (&Qmarkerp); + staticpro (&Qbuffer_or_string_p); staticpro (&Qinteger_or_marker_p); #ifdef LISP_FLOAT_TYPE staticpro (&Qfloatp);