]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove unused STREQ macro
authorMichal Nazarewicz <mina86@mina86.com>
Tue, 2 Aug 2016 17:41:00 +0000 (19:41 +0200)
committerMichal Nazarewicz <mina86@mina86.com>
Tue, 2 Aug 2016 17:52:50 +0000 (19:52 +0200)
This fixes the following compilation warning:

    regex.c:516:0: warning: macro "STREQ" is not used [-Wunused-macros]
     #define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
     ^

* src/regex.c (STREQ): Remove unused macro.  It should have been removed
in a [4538a5e: Refactor regex character class parsing in [:name:]]
commit but was mistakenly left out.

src/regex.c

index 8dafb1180586a5ebc9b61e5578a3e16c9cec6b7b..f7ca51184b3faab77e8df32b55d386f28b1db70c 100644 (file)
@@ -513,8 +513,6 @@ init_syntax_once (void)
 
 #define BYTEWIDTH 8 /* In bits.  */
 
-#define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
-
 #ifndef emacs
 # undef max
 # undef min