aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2015-06-18 19:15:05 -0400
committerGlenn Morris2015-06-18 19:15:05 -0400
commitd213cf0400ee5cad2e7f4626745fd97b942ff5e9 (patch)
treee73df1cd6d1771cd473f2a5f247bac5bad19a999 /src
parent52c3946c872c8bd96508f74cdda5cbb90c664306 (diff)
downloademacs-d213cf0400ee5cad2e7f4626745fd97b942ff5e9.tar.gz
emacs-d213cf0400ee5cad2e7f4626745fd97b942ff5e9.zip
* src/doc.c (Fsubstitute_command_keys): Make previous change compile.
Diffstat (limited to 'src')
-rw-r--r--src/doc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc.c b/src/doc.c
index 6794ec777ae..81b1354668f 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -932,7 +932,7 @@ Otherwise, return a new string. */)
932 strp = SDATA (string) + idx; 932 strp = SDATA (string) + idx;
933 } 933 }
934 } 934 }
935 else if ((Vhelp_quote_translation == Qprefer_unicode) 935 else if (EQ (Vhelp_quote_translation, Qprefer_unicode)
936 && (strp[0] == '`')) 936 && (strp[0] == '`'))
937 { 937 {
938 in_quote = true; 938 in_quote = true;
@@ -943,7 +943,7 @@ Otherwise, return a new string. */)
943 idx = strp - SDATA (string) + 1; 943 idx = strp - SDATA (string) + 1;
944 goto subst; 944 goto subst;
945 } 945 }
946 else if ((Vhelp_quote_translation == Qprefer_unicode) 946 else if (EQ (Vhelp_quote_translation, Qprefer_unicode)
947 && (strp[0] == '\'' && in_quote)) 947 && (strp[0] == '\'' && in_quote))
948 { 948 {
949 in_quote = false; 949 in_quote = false;
@@ -951,7 +951,7 @@ Otherwise, return a new string. */)
951 goto subst_quote; 951 goto subst_quote;
952 } 952 }
953 953
954 else if ((Vhelp_quote_translation == Qtraditional) 954 else if (EQ (Vhelp_quote_translation, Qtraditional)
955 && (strp[0] == 0xE2) 955 && (strp[0] == 0xE2)
956 && (strp[1] == 0x80) 956 && (strp[1] == 0x80)
957 && ((strp[2] == 0x98) /* curly opening quote */ 957 && ((strp[2] == 0x98) /* curly opening quote */