aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
authorPaul Eggert2013-01-14 09:46:14 -0800
committerPaul Eggert2013-01-14 09:46:14 -0800
commitc50cf2eac4b18e38bef5b6e58827cc2bce1e98f4 (patch)
tree56685b68573608bf284b55d0996cc471fda34366 /src/print.c
parent57dd9e68862eeb452388b07c855a8112c3a7b22f (diff)
downloademacs-c50cf2eac4b18e38bef5b6e58827cc2bce1e98f4.tar.gz
emacs-c50cf2eac4b18e38bef5b6e58827cc2bce1e98f4.zip
Avoid needless casts with XSAVE_POINTER.
* alloc.c (mark_object) [GC_MARK_STACK]: * dired.c (directory_files_internal_unwind): * fileio.c (do_auto_save_unwind): * gtkutil.c (pop_down_dialog): * keymap.c (map_keymap_char_table_item): * lread.c (load_unwind): * nsmenu.m (pop_down_menu): * print.c (print_object) [GC_MARK_STACK]: * xfns.c (clean_up_file_dialog): * xmenu.c (cleanup_widget_value_tree): Omit casts between XSAVE_POINTER and a pointer type.
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index 0ae83cdf6d2..2d96202f389 100644
--- a/src/print.c
+++ b/src/print.c
@@ -2054,7 +2054,7 @@ print_object (Lisp_Object obj, register Lisp_Object printcharfun, int escapeflag
2054 normal circumstances. */ 2054 normal circumstances. */
2055 2055
2056 int limit = min (amount, 8); 2056 int limit = min (amount, 8);
2057 Lisp_Object *area = (Lisp_Object *) v->data[0].pointer; 2057 Lisp_Object *area = v->data[0].pointer;
2058 2058
2059 i = sprintf (buf, "with %"pD"d objects", amount); 2059 i = sprintf (buf, "with %"pD"d objects", amount);
2060 strout (buf, i, i, printcharfun); 2060 strout (buf, i, i, printcharfun);