aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
authorJoakim Verona2015-01-25 21:19:27 +0100
committerJoakim Verona2015-01-25 21:19:27 +0100
commitd522fd8ca73e668bfafd0419bc5f71f2751cca24 (patch)
tree4b57a4d2d26e578035801f1c895dcfda5895e09d /src/print.c
parente5087278b9bcab5847ce63d80c0d74c27f50e719 (diff)
parenta3689d3c661fe36df971c875760f8d500b5ae994 (diff)
downloademacs-d522fd8ca73e668bfafd0419bc5f71f2751cca24.tar.gz
emacs-d522fd8ca73e668bfafd0419bc5f71f2751cca24.zip
Merge branch 'master' into xwidget
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/print.c b/src/print.c
index 688327dfe1c..75288bc6a3a 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1175,12 +1175,7 @@ print_preprocess (Lisp_Object obj)
1175 if (PRINT_CIRCLE_CANDIDATE_P (obj)) 1175 if (PRINT_CIRCLE_CANDIDATE_P (obj))
1176 { 1176 {
1177 if (!HASH_TABLE_P (Vprint_number_table)) 1177 if (!HASH_TABLE_P (Vprint_number_table))
1178 { 1178 Vprint_number_table = CALLN (Fmake_hash_table, QCtest, Qeq);
1179 Lisp_Object args[2];
1180 args[0] = QCtest;
1181 args[1] = Qeq;
1182 Vprint_number_table = Fmake_hash_table (2, args);
1183 }
1184 1179
1185 /* In case print-circle is nil and print-gensym is t, 1180 /* In case print-circle is nil and print-gensym is t,
1186 add OBJ to Vprint_number_table only when OBJ is a symbol. */ 1181 add OBJ to Vprint_number_table only when OBJ is a symbol. */