aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lread.c b/src/lread.c
index 726f1f0e905..8a9088b8ed2 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -2551,8 +2551,8 @@ read1 (register Lisp_Object readcharfun, int *pch, int first_in_list)
2551 build them using function calls. */ 2551 build them using function calls. */
2552 Lisp_Object tmp; 2552 Lisp_Object tmp;
2553 tmp = read_vector (readcharfun, 1); 2553 tmp = read_vector (readcharfun, 1);
2554 return Fmake_byte_code (ASIZE (tmp), 2554 make_byte_code (XVECTOR (tmp));
2555 XVECTOR (tmp)->contents); 2555 return tmp;
2556 } 2556 }
2557 if (c == '(') 2557 if (c == '(')
2558 { 2558 {