فهرست منبع

org-latex.el (org-export-latex-make-header): Fix inclusion of email.

Bastien Guerry 14 سال پیش
والد
کامیت
4e15183e6d
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      lisp/org-latex.el

+ 1 - 1
lisp/org-latex.el

@@ -1294,7 +1294,7 @@ OPT-PLIST is the options plist for current buffer."
      (if (plist-get opt-plist :author-info)
 	 (format "\\author{%s%s}\n"
 		 (org-export-latex-fontify-headline (or author user-full-name))
-		 (if (and org-export-email-info email
+		 (if (and (plist-get opt-plist :email-info) email
 			  (string-match "\\S-" email))
 		     (format "\\thanks{%s}" email)
 		   ""))