diff --git a/lisp/ox-ascii.el b/lisp/ox-ascii.el index 5711b5313..b7d8425bf 100644 --- a/lisp/ox-ascii.el +++ b/lisp/ox-ascii.el @@ -1029,11 +1029,9 @@ INFO is a plist used as a communication channel." (upcase formatted-title) (cond ((and (org-string-nw-p author) (org-string-nw-p email)) - (concat (if utf8p "\n\n\n" "\n\n") author "\n" email)) - ((org-string-nw-p author) - (concat (if utf8p "\n\n\n" "\n\n") author)) - ((org-string-nw-p email) - (concat (if utf8p "\n\n\n" "\n\n") email))) + (concat "\n\n" author "\n" email)) + ((org-string-nw-p author) (concat "\n\n" author)) + ((org-string-nw-p email) (concat "\n\n" email))) "\n" line (when (org-string-nw-p date) (concat "\n\n\n" date)) "\n\n\n") text-width 'center)))))