+ /*
+ * Here's the email that submitted the patch with
+ * the comment above:
+ * https://www.mail-archive.com/nmh-workers@mhost.com/
+ * msg00288.html
+ * I can't tell from that exactly what was broken,
+ * beyond misquoting of the filename. The profile
+ * had appearances of %F both with and without quotes.
+ * The unquoted ones should have been quoted by the
+ * code below.
+ * The fix was to always quote the filename. But
+ * that broke '%F' because it expanded to ''filename''.
+ * That's why I added the condition above to not
+ * quote if the escape was wrapped with single
+ * quotes. It would be (much) better to rely on
+ * the quoting code below, but until I understand
+ * what is wrong with it, I won't do that.
+ */