texinfo-commits
[Top][All Lists]
Advanced

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

[5889] check for syntax case-insensitively


From: Gavin D. Smith
Subject: [5889] check for syntax case-insensitively
Date: Fri, 24 Oct 2014 16:19:32 +0000

Revision: 5889
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=5889
Author:   gavin
Date:     2014-10-24 16:19:30 +0000 (Fri, 24 Oct 2014)
Log Message:
-----------
check for syntax case-insensitively

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/info/info-utils.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2014-10-24 13:37:12 UTC (rev 5888)
+++ trunk/ChangeLog     2014-10-24 16:19:30 UTC (rev 5889)
@@ -5,6 +5,9 @@
        * info/info-utils.c (printed_representation): Make '\r' bytes 
        followed by a '\n' invisible.
        * info/Makefile.am: t/cr-tag-table.sh removed from XFAIL_TESTS.
+       
+       * info/info-utils.c (forward_to_info_syntax): Check for syntax 
+       case-insensitively.
 
 2014-10-22  Gavin Smith  <address@hidden>
 

Modified: trunk/info/info-utils.c
===================================================================
--- trunk/info/info-utils.c     2014-10-24 13:37:12 UTC (rev 5888)
+++ trunk/info/info-utils.c     2014-10-24 16:19:30 UTC (rev 5889)
@@ -1589,7 +1589,7 @@
 }
 
 #define looking_at_string(contents, string) \
-  (!memcmp (contents, string, strlen (string)))
+  (!strncasecmp (contents, string, strlen (string)))
 
 static char *
 forward_to_info_syntax (char *contents)




reply via email to

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