diff options
| author | Lars Hansen | 2003-11-21 18:26:21 +0000 |
|---|---|---|
| committer | Lars Hansen | 2003-11-21 18:26:21 +0000 |
| commit | aae13d36642fd2c1f1e98c14cb74ce24e0a73b29 (patch) | |
| tree | abe00b7e8823c84dc0221c3cff3f894a8bef80c2 /src | |
| parent | f3bd74b387c6252cb46f420f9f9999a89b784815 (diff) | |
| download | emacs-aae13d36642fd2c1f1e98c14cb74ce24e0a73b29.tar.gz emacs-aae13d36642fd2c1f1e98c14cb74ce24e0a73b29.zip | |
(Qinteger): Exported.
Diffstat (limited to 'src')
| -rw-r--r-- | src/data.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index c397bc146c4..a246271c1f6 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -71,6 +71,7 @@ Lisp_Object Qinvalid_function, Qwrong_number_of_arguments, Qno_catch; | |||
| 71 | Lisp_Object Qend_of_file, Qarith_error, Qmark_inactive; | 71 | Lisp_Object Qend_of_file, Qarith_error, Qmark_inactive; |
| 72 | Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only; | 72 | Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only; |
| 73 | Lisp_Object Qtext_read_only; | 73 | Lisp_Object Qtext_read_only; |
| 74 | |||
| 74 | Lisp_Object Qintegerp, Qnatnump, Qwholenump, Qsymbolp, Qlistp, Qconsp; | 75 | Lisp_Object Qintegerp, Qnatnump, Qwholenump, Qsymbolp, Qlistp, Qconsp; |
| 75 | Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp; | 76 | Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp; |
| 76 | Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp; | 77 | Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp; |
| @@ -87,7 +88,8 @@ Lisp_Object Qoverflow_error, Qunderflow_error; | |||
| 87 | Lisp_Object Qfloatp; | 88 | Lisp_Object Qfloatp; |
| 88 | Lisp_Object Qnumberp, Qnumber_or_marker_p; | 89 | Lisp_Object Qnumberp, Qnumber_or_marker_p; |
| 89 | 90 | ||
| 90 | static Lisp_Object Qinteger, Qsymbol, Qstring, Qcons, Qmarker, Qoverlay; | 91 | Lisp_Object Qinteger; |
| 92 | static Lisp_Object Qsymbol, Qstring, Qcons, Qmarker, Qoverlay; | ||
| 91 | static Lisp_Object Qfloat, Qwindow_configuration, Qwindow; | 93 | static Lisp_Object Qfloat, Qwindow_configuration, Qwindow; |
| 92 | Lisp_Object Qprocess; | 94 | Lisp_Object Qprocess; |
| 93 | static Lisp_Object Qcompiled_function, Qbuffer, Qframe, Qvector; | 95 | static Lisp_Object Qcompiled_function, Qbuffer, Qframe, Qvector; |