aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorKen Raeburn2000-04-05 18:53:39 +0000
committerKen Raeburn2000-04-05 18:53:39 +0000
commitc0333abccb3e0997fad7d6a62bc317a49fbf6d07 (patch)
tree985782f6347583dcb0460a8bda994fff6f26a09d /src/ChangeLog
parent74e49b38a8438c25b5f96cbc16be8001c706a484 (diff)
downloademacs-c0333abccb3e0997fad7d6a62bc317a49fbf6d07.tar.gz
emacs-c0333abccb3e0997fad7d6a62bc317a49fbf6d07.zip
* intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for a pointer
that looks like a lisp object. (SET_INTERVAL_OBJECT): Don't explicitly compare the object with zero, instead see whether it's an integer object, since they can't have intervals. (GET_INTERVAL_OBJECT): Simply assign to the destination.
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 b42ccbb177a..b957c146a83 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,12 @@
12000-04-05 Ken Raeburn <raeburn@gnu.org> 12000-04-05 Ken Raeburn <raeburn@gnu.org>
2 2
3 * intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for
4 a pointer that looks like a lisp object.
5 (SET_INTERVAL_OBJECT): Don't explicitly compare the object with
6 zero, instead see whether it's an integer object, since they can't
7 have intervals.
8 (GET_INTERVAL_OBJECT): Simply assign to the destination.
9
3 * dispnew.c (allocate_matrices_for_frame_redisplay, 10 * dispnew.c (allocate_matrices_for_frame_redisplay,
4 direct_output_forward_char): Use X(U)INT and make_number as needed 11 direct_output_forward_char): Use X(U)INT and make_number as needed
5 to convert between (unsigned) int values and lisp integers. 12 to convert between (unsigned) int values and lisp integers.