emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/Attic/character.c,v [emacs]


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/Attic/character.c,v [emacs]
Date: Tue, 06 Jun 2006 03:48:03 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Branch:         emacs
Changes by:     Kenichi Handa <handa>   06/06/06 03:48:03

Index: character.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/Attic/character.c,v
retrieving revision 1.1.4.9
retrieving revision 1.1.4.10
diff -u -b -r1.1.4.9 -r1.1.4.10
--- character.c 28 Dec 2005 06:02:18 -0000      1.1.4.9
+++ character.c 6 Jun 2006 03:48:03 -0000       1.1.4.10
@@ -81,6 +81,9 @@
 /* Char table of scripts.  */
 Lisp_Object Vchar_script_table;
 
+/* Alist of scripts vs representative characters.  */
+Lisp_Object Vscript_representative_chars;
+
 static Lisp_Object Qchar_script_table;
 
 /* Mapping table from unibyte chars to multibyte chars.  */
@@ -983,6 +986,10 @@
   DEFSYM (Qchar_script_table, "char-script-table");
   Fput (Qchar_script_table, Qchar_table_extra_slots, make_number (1));
   Vchar_script_table = Fmake_char_table (Qchar_script_table, Qnil);
+
+  DEFVAR_LISP ("script-representative-chars", &Vscript_representative_chars,
+              doc: /* Alist of scripts vs the representative characters.  */);
+  Vscript_representative_chars = Qnil;
 }
 
 #endif /* emacs */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]