diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/buffer.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 60009bf5e0f..f7e029271e0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2011-09-10 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * buffer.h: Include <sys/types.h> instead of <time.h>. | ||
| 4 | Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386. | ||
| 5 | Problem reported by Herbert J. Skuhra. | ||
| 6 | |||
| 1 | 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org> | 7 | 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 8 | ||
| 3 | * xml.c (parse_region): Make the parsing work for | 9 | * xml.c (parse_region): Make the parsing work for |
diff --git a/src/buffer.h b/src/buffer.h index c50cfe56c77..73628fe6dfc 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -18,7 +18,7 @@ GNU General Public License for more details. | |||
| 18 | You should have received a copy of the GNU General Public License | 18 | You should have received a copy of the GNU General Public License |
| 19 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | 19 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 20 | 20 | ||
| 21 | #include <time.h> /* for time_t */ | 21 | #include <sys/types.h> /* for off_t, time_t */ |
| 22 | 22 | ||
| 23 | /* Accessing the parameters of the current buffer. */ | 23 | /* Accessing the parameters of the current buffer. */ |
| 24 | 24 | ||