GNU bug report logs - #14424
24.3.50; Regression: Failure to find acronym with case-fold-search t

Previous Next

Package: emacs;

Reported by: Barry OReilly <gundaetiapo <at> gmail.com>

Date: Mon, 20 May 2013 13:45:02 UTC

Severity: normal

Found in version 24.3.50

Done: Stefan Monnier <monnier <at> IRO.UMontreal.CA>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Barry OReilly <gundaetiapo <at> gmail.com>
To: 14424 <at> debbugs.gnu.org
Subject: bug#14424: Acknowledgement (24.3.50; Regression: Failure to find acronym with case-fold-search t)
Date: Wed, 22 May 2013 12:07:58 -0400
[Message part 1 (text/plain, inline)]
This allows the test case to succeed, and I think is what the indicated
changeset intended.

diff --git a/src/casetab.c b/src/casetab.c
index 13bed64..5f3c8db 100644
--- a/src/casetab.c
+++ b/src/casetab.c
@@ -286,7 +286,7 @@ init_casetab_once (void)
       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);
[Message part 2 (text/html, inline)]

This bug report was last modified 12 years and 63 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.