changeset 893:c9f067fd71a3

[xemacs-hg @ 2002-07-02 12:32:34 by stephent] comment improvements and charset breakage fix <873cv2cnxh.fsf@tleepslib.sk.tsukuba.ac.jp>
author stephent
date Tue, 02 Jul 2002 12:32:37 +0000
parents 52c2a7139db0
children 2367ca81af28
files src/ChangeLog src/frame-impl.h src/unicode.c
diffstat 3 files changed, 15 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Tue Jul 02 12:27:58 2002 +0000
+++ b/src/ChangeLog	Tue Jul 02 12:32:37 2002 +0000
@@ -1,3 +1,7 @@
+2002-07-02  Stephen J. Turnbull  <stephen@xemacs.org>
+
+	* frame-impl.h (struct frame): Make comment refer to new file.
+
 2002-06-27  Mike Sperber <mike@xemacs.org>
 
 	* eval.c (Ffuncall): Run `post-gc-hook' if GC just happened.
@@ -10,7 +14,8 @@
 	    Jens Müller <jmueller@informatik.uni-tuebingen.de>
 	    Mike Sperber <mike@xemacs.org>
 
-        * lrecord.h (lrecord_type): add lrecord_type_ephemeron  to lrecord_type enumeration.
+        * lrecord.h (lrecord_type): add lrecord_type_ephemeron
+	to lrecord_type enumeration.
 
 	* lisp.h (XEPHEMERON): 
 	(XEPHEMERON_REF): 
@@ -61,6 +66,10 @@
 
 2002-06-23  Stephen J. Turnbull  <stephen@xemacs.org>
 
+	* unicode.c: More comment and string fiddling.
+
+2002-06-23  Stephen J. Turnbull  <stephen@xemacs.org>
+
 	* unicode.c: Improve top-level comments and many docstrings.
 
 	(Fparse_unicode_translation_table): Use right function name in error.
@@ -1529,7 +1538,7 @@
 	* process.c (syms_of_process):
 	Add process-has-separate-stderr-p, used by call-process-internal.
 
-2002-05-28  Martin K,Av(Bbele <mkoebele@mkoebele.de>, Jens M,A|(Bller <jmueller@informatik.uni-tuebingen.de>
+2002-05-28  Martin Köbele <mkoebele@mkoebele.de>, Jens Müller <jmueller@informatik.uni-tuebingen.de>
 
 	* lrecord.h (lrecord_type): Add lrecord_type_weak_box to
 	lrecord_type enumeration.
--- a/src/frame-impl.h	Tue Jul 02 12:27:58 2002 +0000
+++ b/src/frame-impl.h	Tue Jul 02 12:32:37 2002 +0000
@@ -110,7 +110,7 @@
   display_line_dynarr *desired_display_lines[4];
 
   /* A structure of auxiliary data specific to the device type.
-     struct x_frame is used for X window frames; defined in console-x.h */
+     struct x_frame is for X window frames; defined in console-x-impl.h */
   void *frame_data;
 
 #define FRAME_SLOT_DECLARATION
--- a/src/unicode.c	Tue Jul 02 12:27:58 2002 +0000
+++ b/src/unicode.c	Tue Jul 02 12:32:37 2002 +0000
@@ -964,7 +964,8 @@
   type_checking_assert (code >= 0);
   /* This shortcut depends on the representation of an Ichar, see text.c.
      Note that it may _not_ be extended to U+00A0 to U+00FF (many ISO 8859
-     coded character sets have points that map into that region). */
+     coded character sets have points that map into that region, so this
+     function is many-valued). */
   if (code < 0xA0)
     return (Ichar) code;
 
@@ -1183,7 +1184,7 @@
        EQ (charset, Vcharset_control_1) ||
        EQ (charset, Vcharset_latin_iso8859_1))
       && unicode != ichar)
-    signal_error (Qinvalid_argument, "Can't change Unicode translation for ASCII, Control-1 or Latin-1 char",
+    signal_error (Qinvalid_argument, "Can't change Unicode translation for ASCII, Control-1 or Latin-1 character",
 		  character);
 
   /* #### Composite characters are not properly implemented yet. */