]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/doc.c (Fsubstitute_command_keys): Make previous change compile.
authorGlenn Morris <rgm@gnu.org>
Thu, 18 Jun 2015 23:15:05 +0000 (19:15 -0400)
committerGlenn Morris <rgm@gnu.org>
Thu, 18 Jun 2015 23:15:05 +0000 (19:15 -0400)
src/doc.c

index 6794ec777ae79ba28a5cc2450f95994a3a47f470..81b1354668fbf451359908fa7c4cd80b0dea42c2 100644 (file)
--- a/src/doc.c
+++ b/src/doc.c
@@ -932,7 +932,7 @@ Otherwise, return a new string.  */)
            strp = SDATA (string) + idx;
          }
        }
-      else if ((Vhelp_quote_translation == Qprefer_unicode)
+      else if (EQ (Vhelp_quote_translation, Qprefer_unicode)
                && (strp[0] == '`'))
        {
          in_quote = true;
@@ -943,7 +943,7 @@ Otherwise, return a new string.  */)
          idx = strp - SDATA (string) + 1;
          goto subst;
        }
-      else if ((Vhelp_quote_translation == Qprefer_unicode)
+      else if (EQ (Vhelp_quote_translation, Qprefer_unicode)
                && (strp[0] == '\'' && in_quote))
        {
          in_quote = false;
@@ -951,7 +951,7 @@ Otherwise, return a new string.  */)
          goto subst_quote;
        }
 
-      else if ((Vhelp_quote_translation == Qtraditional)
+      else if (EQ (Vhelp_quote_translation, Qtraditional)
                && (strp[0] == 0xE2)
                && (strp[1] == 0x80)
                && ((strp[2] == 0x98)      /* curly opening quote */