aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c
index ffa8a9b1b48..4a8c3fda319 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1697,11 +1697,11 @@ print_object (Lisp_Object obj, register Lisp_Object printcharfun, int escapeflag
1697 if (escapeflag) 1697 if (escapeflag)
1698 { 1698 {
1699 strout ("#<process ", -1, -1, printcharfun); 1699 strout ("#<process ", -1, -1, printcharfun);
1700 print_string (PGET (XPROCESS (obj), name), printcharfun); 1700 print_string (XPROCESS (obj)->name, printcharfun);
1701 PRINTCHAR ('>'); 1701 PRINTCHAR ('>');
1702 } 1702 }
1703 else 1703 else
1704 print_string (PGET (XPROCESS (obj), name), printcharfun); 1704 print_string (XPROCESS (obj)->name, printcharfun);
1705 } 1705 }
1706 else if (BOOL_VECTOR_P (obj)) 1706 else if (BOOL_VECTOR_P (obj))
1707 { 1707 {