Mercurial > emacs
comparison src/fileio.c @ 9291:51aef3ec59f8
(Finsert_file_contents): No longer necessary to set type separately.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 04 Oct 1994 14:23:18 +0000 |
parents | 811ad893828b |
children | 44d6fc4b638b |
comparison
equal
deleted
inserted
replaced
9290:27aad4f82051 | 9291:51aef3ec59f8 |
---|---|
2689 | 2689 |
2690 if (!NILP (end)) | 2690 if (!NILP (end)) |
2691 CHECK_NUMBER (end, 0); | 2691 CHECK_NUMBER (end, 0); |
2692 else | 2692 else |
2693 { | 2693 { |
2694 XSETTYPE (end, Lisp_Int); | |
2695 XSETINT (end, st.st_size); | 2694 XSETINT (end, st.st_size); |
2696 if (XINT (end) != st.st_size) | 2695 if (XINT (end) != st.st_size) |
2697 error ("maximum buffer size exceeded"); | 2696 error ("maximum buffer size exceeded"); |
2698 } | 2697 } |
2699 | 2698 |