emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r112672: * src/casetab.c (init_caseta


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112672: * src/casetab.c (init_casetab_once): Fix last change.
Date: Wed, 22 May 2013 17:35:00 -0400
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112672
fixes bug: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14424
author: Barry OReilly <address@hidden>
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Wed 2013-05-22 17:35:00 -0400
message:
  * src/casetab.c (init_casetab_once): Fix last change.
modified:
  src/ChangeLog
  src/casetab.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-05-22 15:12:59 +0000
+++ b/src/ChangeLog     2013-05-22 21:35:00 +0000
@@ -1,3 +1,7 @@
+2013-05-22  Barry OReilly  <address@hidden>  (tiny change)
+
+       * casetab.c (init_casetab_once): Fix last change (bug#14424).
+
 2013-05-22  Kenichi Handa  <address@hidden>
 
        The following changes are to fix the setting of
@@ -12,8 +16,8 @@
        (setup_coding_system): Do not initialize coding->head_ascii.
        (check_ascii): Do not set coding->eol_seen but update it.  Do not
        call adjust_coding_eol_type here.
-       (detect_coding): Fix detection of BOM for utf-8 and utf-16.  If
-       the eol-type of CODING is already specified, adjust the eol type
+       (detect_coding): Fix detection of BOM for utf-8 and utf-16.
+       If the eol-type of CODING is already specified, adjust the eol type
        of the found coding-system.
        (decode_coding_gap): Cancel previous change.  Utilize the
        character numbers counted by detect_coding_utf_8.  Fix detection

=== modified file 'src/casetab.c'
--- a/src/casetab.c     2013-03-27 14:33:03 +0000
+++ b/src/casetab.c     2013-05-22 21:35:00 +0000
@@ -286,7 +286,7 @@
       int c = ((i >= 'A' && i <= 'Z') ? i + ('a' - 'A')
               : ((i >= 'a' && i <= 'z') ? i + ('A' - 'a')
                  : i));
-      CHAR_TABLE_SET (up, i, make_number (c));
+      CHAR_TABLE_SET (eqv, i, make_number (c));
     }
 
   set_char_table_extras (down, 2, eqv);


reply via email to

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