aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBarry O'Reilly2013-05-22 17:35:00 -0400
committerStefan Monnier2013-05-22 17:35:00 -0400
commit1413e9a5a5de3451fadd4d3a9b399cb35eec7901 (patch)
tree9a929e07b67f034cb09a154ae0bd7ea5d7e0983c /src
parent85d090a95c63473ea9353663c7d47e3c796b21a0 (diff)
downloademacs-1413e9a5a5de3451fadd4d3a9b399cb35eec7901.tar.gz
emacs-1413e9a5a5de3451fadd4d3a9b399cb35eec7901.zip
* src/casetab.c (init_casetab_once): Fix last change.
Fixes: debbugs:14424
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog8
-rw-r--r--src/casetab.c2
2 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 418a89d7b89..ae311d25ee9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-05-22 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
2
3 * casetab.c (init_casetab_once): Fix last change (bug#14424).
4
12013-05-22 Kenichi Handa <handa@gnu.org> 52013-05-22 Kenichi Handa <handa@gnu.org>
2 6
3 The following changes are to fix the setting of 7 The following changes are to fix the setting of
@@ -12,8 +16,8 @@
12 (setup_coding_system): Do not initialize coding->head_ascii. 16 (setup_coding_system): Do not initialize coding->head_ascii.
13 (check_ascii): Do not set coding->eol_seen but update it. Do not 17 (check_ascii): Do not set coding->eol_seen but update it. Do not
14 call adjust_coding_eol_type here. 18 call adjust_coding_eol_type here.
15 (detect_coding): Fix detection of BOM for utf-8 and utf-16. If 19 (detect_coding): Fix detection of BOM for utf-8 and utf-16.
16 the eol-type of CODING is already specified, adjust the eol type 20 If the eol-type of CODING is already specified, adjust the eol type
17 of the found coding-system. 21 of the found coding-system.
18 (decode_coding_gap): Cancel previous change. Utilize the 22 (decode_coding_gap): Cancel previous change. Utilize the
19 character numbers counted by detect_coding_utf_8. Fix detection 23 character numbers counted by detect_coding_utf_8. Fix detection
diff --git a/src/casetab.c b/src/casetab.c
index 13bed64e4b2..5f3c8db2869 100644
--- a/src/casetab.c
+++ b/src/casetab.c
@@ -286,7 +286,7 @@ init_casetab_once (void)
286 int c = ((i >= 'A' && i <= 'Z') ? i + ('a' - 'A') 286 int c = ((i >= 'A' && i <= 'Z') ? i + ('a' - 'A')
287 : ((i >= 'a' && i <= 'z') ? i + ('A' - 'a') 287 : ((i >= 'a' && i <= 'z') ? i + ('A' - 'a')
288 : i)); 288 : i));
289 CHAR_TABLE_SET (up, i, make_number (c)); 289 CHAR_TABLE_SET (eqv, i, make_number (c));
290 } 290 }
291 291
292 set_char_table_extras (down, 2, eqv); 292 set_char_table_extras (down, 2, eqv);