diff src/ChangeLog @ 4725:5690bb2e7a44

Merge improvements in defun-movement docstrings.
author Stephen J. Turnbull <stephen@xemacs.org>
date Sun, 01 Nov 2009 15:54:15 +0900
parents 19d70297d866
children 428d7c571110
line wrap: on
line diff
--- a/src/ChangeLog	Fri Oct 09 05:10:03 2009 +0900
+++ b/src/ChangeLog	Sun Nov 01 15:54:15 2009 +0900
@@ -1,3 +1,50 @@
+2009-10-26  Aidan Kehoe  <kehoea@parhasard.net>
+
+	* config.h.in (REALPATH_CORRECTS_CASE): 
+	New #define, available on Darwin. 
+	* realpath.c (readlink_or_correct_case): 
+	On Darwin, use realpath(3)'s case correction to get the canonical
+	case for a file; thank you Robert Delius Royar!
+
+2009-10-11  Michael Sperber  <mike@xemacs.org>
+
+	* event-stream.c (post_command_hook): Run `post-command-hook'
+	without INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION -
+	deleting other windows off that hook is legitimate.
+
+2009-10-08  Jerry James  <james@xemacs.org>
+
+	* bytecode.c (bytecode_arithop): Make divide-by-zero errors
+	noncontinuable.
+	* floatfns.c (arith_error2): New macro for signaling divide-by-zero.
+	(ceiling_two_fixnum): Handle a value returned from a continuable error.
+	(ceiling_two_bignum): Ditto.
+	(ceiling_two_ratio): Ditto.
+	(ceiling_two_bigfloat): Ditto.
+	(ceiling_two_float): Ditto.
+	(floor_two_fixnum): Ditto.
+	(floor_two_bignum): Ditto.
+	(floor_two_ratio): Ditto.
+	(floor_two_bigfloat): Ditto.
+	(floor_two_float): Ditto.
+	(round_two_fixnum): Ditto.
+	(round_two_bignum): Ditto.
+	(round_two_ratio): Ditto.
+	(round_two_bigfloat): Ditto.
+	(round_two_float): Ditto.
+	(truncate_two_fixnum): Ditto.
+	(truncate_two_bignum): Ditto.
+	(truncate_two_ratio): Ditto.
+	(truncate_two_bigfloat): Ditto.
+	(truncate_two_float): Ditto.
+	(truncate_one_ratio): Truncating zero should result in zero.
+
+2009-10-10  Aidan Kehoe  <kehoea@parhasard.net>
+
+	* rangetab.c (Frange_table_type): 
+	Correct the docstring for this function, don't reuse that of
+	Frange_table_p.
+
 2009-10-05  Jerry James  <james@xemacs.org>
 
 	* emacs.c (main_1): Check the return value of dup() to quiet gcc.