diff options
| author | Jim Blandy | 1992-06-02 05:18:06 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-06-02 05:18:06 +0000 |
| commit | dfdb645c3e0e4e12bcdc506c96b11254ab32a80c (patch) | |
| tree | b53251265b28203d49e9a38e46297ce43df75e0f /src/lread.c | |
| parent | 228d4b1c2ca4af62f74ba0a2edc03f962e20f544 (diff) | |
| download | emacs-dfdb645c3e0e4e12bcdc506c96b11254ab32a80c.tar.gz emacs-dfdb645c3e0e4e12bcdc506c96b11254ab32a80c.zip | |
*** empty log message ***
Diffstat (limited to 'src/lread.c')
| -rw-r--r-- | src/lread.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lread.c b/src/lread.c index 930a9e56839..9477a11c421 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -513,21 +513,21 @@ point remains at the end of the last character read from the buffer.") | |||
| 513 | int count = specpdl_ptr - specpdl; | 513 | int count = specpdl_ptr - specpdl; |
| 514 | Lisp_Object tem, buf; | 514 | Lisp_Object tem, buf; |
| 515 | 515 | ||
| 516 | if (NIL_P (bufname)) | 516 | if (NILP (bufname)) |
| 517 | buf = Fcurrent_buffer (); | 517 | buf = Fcurrent_buffer (); |
| 518 | else | 518 | else |
| 519 | buf = Fget_buffer (bufname); | 519 | buf = Fget_buffer (bufname); |
| 520 | if (NIL_P (buf)) | 520 | if (NILP (buf)) |
| 521 | error ("No such buffer."); | 521 | error ("No such buffer."); |
| 522 | 522 | ||
| 523 | if (NIL_P (printflag)) | 523 | if (NILP (printflag)) |
| 524 | tem = Qsymbolp; | 524 | tem = Qsymbolp; |
| 525 | else | 525 | else |
| 526 | tem = printflag; | 526 | tem = printflag; |
| 527 | specbind (Qstandard_output, tem); | 527 | specbind (Qstandard_output, tem); |
| 528 | record_unwind_protect (save_excursion_restore, save_excursion_save ()); | 528 | record_unwind_protect (save_excursion_restore, save_excursion_save ()); |
| 529 | BUF_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf))); | 529 | BUF_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf))); |
| 530 | readevalloop (buf, 0, Feval, !NIL_P (printflag)); | 530 | readevalloop (buf, 0, Feval, !NILP (printflag)); |
| 531 | unbind_to (count); | 531 | unbind_to (count); |
| 532 | 532 | ||
| 533 | return Qnil; | 533 | return Qnil; |