aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c
index f767ae05e96..0c36f8e18c3 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4099,9 +4099,9 @@ server_accept_connection (Lisp_Object server, int channel)
4099#endif 4099#endif
4100 default: 4100 default:
4101 caller = Fnumber_to_string (make_number (connect_counter)); 4101 caller = Fnumber_to_string (make_number (connect_counter));
4102 AUTO_STRING (space_lessthan, " <"); 4102 AUTO_STRING (space_less_than, " <");
4103 AUTO_STRING (greaterthan, ">"); 4103 AUTO_STRING (greater_than, ">");
4104 caller = concat3 (space_lessthan, caller, greaterthan); 4104 caller = concat3 (space_less_than, caller, greater_than);
4105 break; 4105 break;
4106 } 4106 }
4107 4107