diff options
| author | Pavel Janík | 2001-12-22 13:58:42 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-12-22 13:58:42 +0000 |
| commit | a4bb6871d3dde5ec377917dab8fe70d526bf9c6b (patch) | |
| tree | f0f39739a8d52e222ef1e7a6f9be0e095908373c /src | |
| parent | 39cf8566cdbf27103565a5e6a7d98ef69dd8ebae (diff) | |
| download | emacs-a4bb6871d3dde5ec377917dab8fe70d526bf9c6b.tar.gz emacs-a4bb6871d3dde5ec377917dab8fe70d526bf9c6b.zip | |
(wrong_type_argument): Remove mocklisp case.
Diffstat (limited to 'src')
| -rw-r--r-- | src/data.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/data.c b/src/data.c index f47167af292..4aea53cc022 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -114,15 +114,6 @@ wrong_type_argument (predicate, value) | |||
| 114 | register Lisp_Object tem; | 114 | register Lisp_Object tem; |
| 115 | do | 115 | do |
| 116 | { | 116 | { |
| 117 | if (!EQ (Vmocklisp_arguments, Qt)) | ||
| 118 | { | ||
| 119 | if (STRINGP (value) && | ||
| 120 | (EQ (predicate, Qintegerp) || EQ (predicate, Qinteger_or_marker_p))) | ||
| 121 | return Fstring_to_number (value, Qnil); | ||
| 122 | if (INTEGERP (value) && EQ (predicate, Qstringp)) | ||
| 123 | return Fnumber_to_string (value); | ||
| 124 | } | ||
| 125 | |||
| 126 | /* If VALUE is not even a valid Lisp object, abort here | 117 | /* If VALUE is not even a valid Lisp object, abort here |
| 127 | where we can get a backtrace showing where it came from. */ | 118 | where we can get a backtrace showing where it came from. */ |
| 128 | if ((unsigned int) XGCTYPE (value) >= Lisp_Type_Limit) | 119 | if ((unsigned int) XGCTYPE (value) >= Lisp_Type_Limit) |