aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-06-03 11:42:59 -0700
committerPaul Eggert2011-06-03 11:42:59 -0700
commitda908fa9a718745d426af0f69f88324b3023b7e4 (patch)
tree5ff9fb8e3845823cca8d3d6a76003fa0d0bc67ec /src/ChangeLog
parent3c9d8b1ef814e03b5490c3ab3e28f2867ee9cf51 (diff)
downloademacs-da908fa9a718745d426af0f69f88324b3023b7e4.tar.gz
emacs-da908fa9a718745d426af0f69f88324b3023b7e4.zip
Fix doc for machines with wider system times such as time_t.
On such machines, it's now safe to assume that EMACS_INT is as wide as the system times, so that shifting right by 16 will result in an integer that always fits in EMACS_INT. * dired.c (Ffile_attributes): Document large inode number handling. * termhooks.h: Fix comment for large time stamp handling.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 490f5428e3a..857600fda0c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,12 @@
12011-06-03 Paul Eggert <eggert@cs.ucla.edu> 12011-06-03 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Fix doc for machines with wider system times such as time_t.
4 On such machines, it's now safe to assume that EMACS_INT is as
5 wide as the system times, so that shifting right by 16 will
6 result in an integer that always fits in EMACS_INT.
7 * dired.c (Ffile_attributes): Document large inode number handling.
8 * termhooks.h: Fix comment for large time stamp handling.
9
3 * lisp.h (WIDE_EMACS_INT): Now defaults to 1. 10 * lisp.h (WIDE_EMACS_INT): Now defaults to 1.
4 11
5 * xselect.c: Use 'unsigned' more consistently. 12 * xselect.c: Use 'unsigned' more consistently.