Commit 20496c95 20496c95625d465b63cc948e6826e7b7eb61344e by Sergey Poznyakoff

(mail_escape_table): Add ~x

1 parent 2f14fb30
...@@ -238,6 +238,8 @@ static const struct mail_escape_entry mail_escape_table[] = { ...@@ -238,6 +238,8 @@ static const struct mail_escape_entry mail_escape_table[] = {
238 {"t", "t", "t[name-list]", escape_to }, 238 {"t", "t", "t[name-list]", escape_to },
239 {"v", "v", "v", escape_visual }, 239 {"v", "v", "v", escape_visual },
240 {"w", "w", "w[filename]", escape_write }, 240 {"w", "w", "w[filename]", escape_write },
241 {"x", "x", "x", NULL }, /* Implemented directly in
242 send.c */
241 {"|", "|", "|[shell-command]", escape_pipe }, 243 {"|", "|", "|[shell-command]", escape_pipe },
242 }; 244 };
243 245
......