aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lread.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lread.c b/src/lread.c
index 99111a06c7d..95914a413a4 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -2112,9 +2112,9 @@ read1 (readcharfun, pch, first_in_list)
2112 { 2112 {
2113 Lisp_Object value; 2113 Lisp_Object value;
2114 2114
2115 new_backquote_flag = 1; 2115 new_backquote_flag++;
2116 value = read0 (readcharfun); 2116 value = read0 (readcharfun);
2117 new_backquote_flag = 0; 2117 new_backquote_flag--;
2118 2118
2119 return Fcons (Qbackquote, Fcons (value, Qnil)); 2119 return Fcons (Qbackquote, Fcons (value, Qnil));
2120 } 2120 }
@@ -2136,9 +2136,9 @@ read1 (readcharfun, pch, first_in_list)
2136 comma_type = Qcomma; 2136 comma_type = Qcomma;
2137 } 2137 }
2138 2138
2139 new_backquote_flag = 0; 2139 new_backquote_flag--;
2140 value = read0 (readcharfun); 2140 value = read0 (readcharfun);
2141 new_backquote_flag = 1; 2141 new_backquote_flag++;
2142 return Fcons (comma_type, Fcons (value, Qnil)); 2142 return Fcons (comma_type, Fcons (value, Qnil));
2143 } 2143 }
2144 else 2144 else