User: aidan
Date: 05/12/18 11:59:17
Modified: xemacs/src ChangeLog chartab.c
Log:
Set the default character class to word, not whitespace
Revision Changes Path
1.905 +5 -0 XEmacs/xemacs/src/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.904
retrieving revision 1.905
diff -u -p -r1.904 -r1.905
--- ChangeLog 2005/12/17 21:04:15 1.904
+++ ChangeLog 2005/12/18 10:59:12 1.905
@@ -1,3 +1,8 @@
+2005-12-18 Aidan Kehoe <kehoea(a)parhasard.net>
+
+ * chartab.c (Fmake_char_table):
+ Set the default character class to word, not whitespace.
+
2005-12-17 Aidan Kehoe <kehoea(a)parhasard.net>
* buffer.c:
1.39 +1 -1 XEmacs/xemacs/src/chartab.c
Index: chartab.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/chartab.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -p -r1.38 -r1.39
--- chartab.c 2005/10/25 11:16:21 1.38
+++ chartab.c 2005/12/18 10:59:14 1.39
@@ -600,7 +600,7 @@ sorts of values. The different char tab
/* Qgeneric not Qsyntax because a syntax table has a mirror table
and we don't want infinite recursion */
ct->mirror_table = Fmake_char_table (Qgeneric);
- set_char_table_default (ct->mirror_table, make_int (Spunct));
+ set_char_table_default (ct->mirror_table, make_int (Sword));
XCHAR_TABLE (ct->mirror_table)->mirror_table_p = 1;
XCHAR_TABLE (ct->mirror_table)->mirror_table = obj;
}
Show replies by date