فهرست منبع

Remove unnecessary local variable

Carsten Dominik 14 سال پیش
والد
کامیت
cd04462438
1فایلهای تغییر یافته به همراه1 افزوده شده و 2 حذف شده
  1. 1 2
      lisp/org-latex.el

+ 1 - 2
lisp/org-latex.el

@@ -2328,8 +2328,7 @@ The conversion is made depending of STRING-BEFORE and STRING-AFTER."
     (while (re-search-forward
 	    "^[ \t]*#\\+index:[ \t]*\\([^ \t\r\n].*?\\)[ \t]*$"
 	    nil t)
-      (let ((entry (match-string 1)))
-	(replace-match (format "\\index{%s}" (match-string 1)) t t))))
+      (replace-match (format "\\index{%s}" (match-string 1)) t t)))
 
   ;; Convert center
   (goto-char (point-min))