Mercurial > emacs
changeset 1293:95ae0805ebba
Qbuffer_or_string_p added.
author | Joseph Arceneaux <jla@gnu.org> |
---|---|
date | Thu, 01 Oct 1992 01:58:57 +0000 |
parents | d9a103f4843e |
children | 81c5d1c4a7ed |
files | src/data.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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);