Commit 19e30116 19e301167f703a708a41a275adc8d9fce0cb8b6b by Sergey Poznyakoff

Remove an ugly debugging hack.

1 parent a1278648
...@@ -21,7 +21,7 @@ void ...@@ -21,7 +21,7 @@ void
21 make_in_reply_to (compose_env_t *env, mu_message_t msg) 21 make_in_reply_to (compose_env_t *env, mu_message_t msg)
22 { 22 {
23 char *value = NULL; 23 char *value = NULL;
24 wd(); 24
25 mu_rfc2822_in_reply_to (msg, &value); 25 mu_rfc2822_in_reply_to (msg, &value);
26 compose_header_set (env, MU_HEADER_IN_REPLY_TO, value, 26 compose_header_set (env, MU_HEADER_IN_REPLY_TO, value,
27 COMPOSE_REPLACE); 27 COMPOSE_REPLACE);
...@@ -138,9 +138,3 @@ mail_reply (int argc, char **argv) ...@@ -138,9 +138,3 @@ mail_reply (int argc, char **argv)
138 return util_foreach_msg (argc, argv, MSG_NODELETED, reply0, &lower); 138 return util_foreach_msg (argc, argv, MSG_NODELETED, reply0, &lower);
139 } 139 }
140 140
141 wd()
142 {
143 int volatile _st=1;
144 while (!_st)
145 _st=_st;
146 }
......