diff options
| author | Lars Hansen | 2003-11-21 18:27:05 +0000 |
|---|---|---|
| committer | Lars Hansen | 2003-11-21 18:27:05 +0000 |
| commit | 9ab301de548b428ce2b9fcca637d35aa74005006 (patch) | |
| tree | 35a8e0ab0d4759d3bef0d0c95fa41d4c95df5001 /src | |
| parent | aae13d36642fd2c1f1e98c14cb74ce24e0a73b29 (diff) | |
| download | emacs-9ab301de548b428ce2b9fcca637d35aa74005006.tar.gz emacs-9ab301de548b428ce2b9fcca637d35aa74005006.zip | |
(Qinteger): Added.
(Qinteger_or_floatp, Qinteger_or_float_or_marker_p): Removed.
(Ffile_attributes): Parameter added.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/src/lisp.h b/src/lisp.h index 4694078195e..94de2c2960f 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1951,29 +1951,32 @@ extern Lisp_Object Qerror, Qquit, Qwrong_type_argument, Qargs_out_of_range; | |||
| 1951 | extern Lisp_Object Qvoid_variable, Qvoid_function; | 1951 | extern Lisp_Object Qvoid_variable, Qvoid_function; |
| 1952 | extern Lisp_Object Qsetting_constant, Qinvalid_read_syntax; | 1952 | extern Lisp_Object Qsetting_constant, Qinvalid_read_syntax; |
| 1953 | extern Lisp_Object Qinvalid_function, Qwrong_number_of_arguments, Qno_catch; | 1953 | extern Lisp_Object Qinvalid_function, Qwrong_number_of_arguments, Qno_catch; |
| 1954 | extern Lisp_Object Qend_of_file, Qarith_error; | 1954 | extern Lisp_Object Qend_of_file, Qarith_error, Qmark_inactive; |
| 1955 | extern Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only; | 1955 | extern Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only; |
| 1956 | extern Lisp_Object Qmark_inactive, Qtext_read_only; | 1956 | extern Lisp_Object Qtext_read_only; |
| 1957 | 1957 | ||
| 1958 | extern Lisp_Object Qrange_error, Qdomain_error, Qsingularity_error; | 1958 | extern Lisp_Object Qintegerp, Qnatnump, Qwholenump, Qsymbolp, Qlistp, Qconsp; |
| 1959 | extern Lisp_Object Qoverflow_error, Qunderflow_error; | ||
| 1960 | |||
| 1961 | extern Lisp_Object Qintegerp, Qnumberp, Qnatnump, Qwholenump; | ||
| 1962 | extern Lisp_Object Qsymbolp, Qlistp, Qconsp; | ||
| 1963 | extern Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp; | 1959 | extern Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp; |
| 1964 | extern Lisp_Object Qchar_or_string_p, Qmarkerp, Qvectorp; | 1960 | extern Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp; |
| 1965 | extern Lisp_Object Qinteger_or_marker_p, Qnumber_or_marker_p; | ||
| 1966 | extern Lisp_Object Qchar_table_p, Qvector_or_char_table_p; | ||
| 1967 | extern Lisp_Object Qboundp, Qfboundp; | ||
| 1968 | extern Lisp_Object Qbuffer_or_string_p; | 1961 | extern Lisp_Object Qbuffer_or_string_p; |
| 1962 | extern Lisp_Object Qboundp, Qfboundp; | ||
| 1963 | extern Lisp_Object Qchar_table_p, Qvector_or_char_table_p; | ||
| 1964 | |||
| 1969 | extern Lisp_Object Qcdr; | 1965 | extern Lisp_Object Qcdr; |
| 1970 | 1966 | ||
| 1971 | extern Lisp_Object Qfloatp, Qinteger_or_floatp, Qinteger_or_float_or_marker_p; | 1967 | extern Lisp_Object Qrange_error, Qdomain_error, Qsingularity_error; |
| 1968 | extern Lisp_Object Qoverflow_error, Qunderflow_error; | ||
| 1972 | 1969 | ||
| 1973 | extern Lisp_Object Qframep; | 1970 | extern Lisp_Object Qfloatp; |
| 1971 | extern Lisp_Object Qnumberp, Qnumber_or_marker_p; | ||
| 1972 | |||
| 1973 | extern Lisp_Object Qinteger; | ||
| 1974 | 1974 | ||
| 1975 | extern void circular_list_error P_ ((Lisp_Object)); | 1975 | extern void circular_list_error P_ ((Lisp_Object)); |
| 1976 | 1976 | ||
| 1977 | /* Defined in frame.c */ | ||
| 1978 | extern Lisp_Object Qframep; | ||
| 1979 | |||
| 1977 | EXFUN (Feq, 2); | 1980 | EXFUN (Feq, 2); |
| 1978 | EXFUN (Fnull, 1); | 1981 | EXFUN (Fnull, 1); |
| 1979 | EXFUN (Flistp, 1); | 1982 | EXFUN (Flistp, 1); |
| @@ -2975,7 +2978,7 @@ extern void syms_of_category P_ ((void)); | |||
| 2975 | extern void syms_of_ccl P_ ((void)); | 2978 | extern void syms_of_ccl P_ ((void)); |
| 2976 | 2979 | ||
| 2977 | /* Defined in dired.c */ | 2980 | /* Defined in dired.c */ |
| 2978 | EXFUN (Ffile_attributes, 1); | 2981 | EXFUN (Ffile_attributes, 2); |
| 2979 | extern void syms_of_dired P_ ((void)); | 2982 | extern void syms_of_dired P_ ((void)); |
| 2980 | 2983 | ||
| 2981 | /* Defined in term.c */ | 2984 | /* Defined in term.c */ |