Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
07bd8472
Commit
07bd8472
authored
Oct 01, 1992
by
Joseph Arceneaux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qbuffer_or_string_p added.
parent
410e16ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
src/data.c
src/data.c
+3
-0
No files found.
src/data.c
View file @
07bd8472
...
...
@@ -45,6 +45,7 @@ Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only;
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 @@ syms_of_data ()
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 @@ syms_of_data ()
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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment