소스 검색

org-e-texinfo.el: Tiny formatting and code fix

* org-e-texinfo.el (org-e-texinfo-table-column-widths): Remove
a quote before a lambda expression.
Bastien Guerry 12 년 전
부모
커밋
be70cfd084
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      contrib/lisp/org-e-texinfo.el

+ 5 - 5
contrib/lisp/org-e-texinfo.el

@@ -783,7 +783,7 @@ holding export options."
 			     detail-menu
 			     "\n\n"
 			     "@end detailmenu\n"))
-		   "@end menu\n"))
+		 "@end menu\n"))
      "\n\n"
 
      ;; Document's body.
@@ -1563,10 +1563,10 @@ a communication channel."
     (push (loop for count from 0 to (- number-cells 1) collect
 		(loop for item in cells collect
 		      (nth count item))) counts)
-    (mapconcat '(lambda (size)
-		  (make-string size ?a)) (mapcar (lambda (ref)
-						   (apply 'max `,@ref)) (car counts))
-		  "} {")))
+    (mapconcat (lambda (size)
+		 (make-string size ?a)) (mapcar (lambda (ref)
+						  (apply 'max `,@ref)) (car counts))
+		 "} {")))
 
 (defun org-e-texinfo-table--org-table (table contents info)
   "Return appropriate Texinfo code for an Org table.