aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorJoseph Arceneaux1992-10-01 01:58:57 +0000
committerJoseph Arceneaux1992-10-01 01:58:57 +0000
commit07bd847225441d580fd4ac11731ac9e679dbddbe (patch)
tree012120999a8591bef7aa352ce3873baaf0c2b2b4 /src/data.c
parent410e16ff89ca7cd554f9fd64882ef7c4e739779f (diff)
downloademacs-07bd847225441d580fd4ac11731ac9e679dbddbe.tar.gz
emacs-07bd847225441d580fd4ac11731ac9e679dbddbe.zip
Qbuffer_or_string_p added.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/data.c b/src/data.c
index 7d11d1cc803..b1457879b94 100644
--- a/src/data.c
+++ b/src/data.c
@@ -45,6 +45,7 @@ Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only;
45Lisp_Object Qintegerp, Qnatnump, Qsymbolp, Qlistp, Qconsp; 45Lisp_Object Qintegerp, Qnatnump, Qsymbolp, Qlistp, Qconsp;
46Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp; 46Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp;
47Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp; 47Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp;
48Lisp_Object Qbuffer_or_string_p;
48Lisp_Object Qboundp, Qfboundp; 49Lisp_Object Qboundp, Qfboundp;
49Lisp_Object Qcdr; 50Lisp_Object Qcdr;
50 51
@@ -1859,6 +1860,7 @@ syms_of_data ()
1859 Qvectorp = intern ("vectorp"); 1860 Qvectorp = intern ("vectorp");
1860 Qchar_or_string_p = intern ("char-or-string-p"); 1861 Qchar_or_string_p = intern ("char-or-string-p");
1861 Qmarkerp = intern ("markerp"); 1862 Qmarkerp = intern ("markerp");
1863 Qbuffer_or_string_p = intern ("buffer-or-string-p");
1862 Qinteger_or_marker_p = intern ("integer-or-marker-p"); 1864 Qinteger_or_marker_p = intern ("integer-or-marker-p");
1863 Qboundp = intern ("boundp"); 1865 Qboundp = intern ("boundp");
1864 Qfboundp = intern ("fboundp"); 1866 Qfboundp = intern ("fboundp");
@@ -1998,6 +2000,7 @@ syms_of_data ()
1998 staticpro (&Qvectorp); 2000 staticpro (&Qvectorp);
1999 staticpro (&Qchar_or_string_p); 2001 staticpro (&Qchar_or_string_p);
2000 staticpro (&Qmarkerp); 2002 staticpro (&Qmarkerp);
2003 staticpro (&Qbuffer_or_string_p);
2001 staticpro (&Qinteger_or_marker_p); 2004 staticpro (&Qinteger_or_marker_p);
2002#ifdef LISP_FLOAT_TYPE 2005#ifdef LISP_FLOAT_TYPE
2003 staticpro (&Qfloatp); 2006 staticpro (&Qfloatp);