diff options
| author | Stefan Monnier | 2002-06-11 15:13:58 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-06-11 15:13:58 +0000 |
| commit | f74db720249518100fc2c257c0997b211c6ef683 (patch) | |
| tree | 8320ef55354688f3aa10c0823e99c27faca83056 /src | |
| parent | 51f86bfc2e1cc6fe65c08c6d86bb83541fe2410c (diff) | |
| download | emacs-f74db720249518100fc2c257c0997b211c6ef683.tar.gz emacs-f74db720249518100fc2c257c0997b211c6ef683.zip | |
(read_integer): Remove unused var `tem'.
(read1): Fix int/Lisp_Object mixup.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lread.c b/src/lread.c index f3ae4c98970..5d1967ece48 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -1461,7 +1461,6 @@ STREAM or the value of `standard-input' may be: | |||
| 1461 | Lisp_Object stream; | 1461 | Lisp_Object stream; |
| 1462 | { | 1462 | { |
| 1463 | extern Lisp_Object Fread_minibuffer (); | 1463 | extern Lisp_Object Fread_minibuffer (); |
| 1464 | Lisp_Object tem; | ||
| 1465 | if (NILP (stream)) | 1464 | if (NILP (stream)) |
| 1466 | stream = Vstandard_input; | 1465 | stream = Vstandard_input; |
| 1467 | if (EQ (stream, Qt)) | 1466 | if (EQ (stream, Qt)) |
| @@ -2513,7 +2512,9 @@ read1 (readcharfun, pch, first_in_list) | |||
| 2513 | /* Kind of a hack; this will probably fail if characters | 2512 | /* Kind of a hack; this will probably fail if characters |
| 2514 | in the symbol name were escaped. Not really a big | 2513 | in the symbol name were escaped. Not really a big |
| 2515 | deal, though. */ | 2514 | deal, though. */ |
| 2516 | Fcons (Fcons (result, readchar_count - Flength (Fsymbol_name (result))), | 2515 | Fcons (Fcons (result, |
| 2516 | make_number (readchar_count | ||
| 2517 | - XFASTINT (Flength (Fsymbol_name (result))))), | ||
| 2517 | Vread_symbol_positions_list); | 2518 | Vread_symbol_positions_list); |
| 2518 | return result; | 2519 | return result; |
| 2519 | } | 2520 | } |