summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-08-24 11:21:24 +0200
committerBastien Guerry <bzg@altern.org>2012-08-24 11:21:24 +0200
commitbe70cfd0840c43e1d07fe90031330e425c1e2733 (patch)
tree9b5fcbf879303fb7835278111f1d2589ca12e55e
parent7e466ea8830a92a9c4a09c810db7b1261a159542 (diff)
downloadorg-mode-be70cfd0840c43e1d07fe90031330e425c1e2733.tar.gz
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.
-rw-r--r--contrib/lisp/org-e-texinfo.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/lisp/org-e-texinfo.el b/contrib/lisp/org-e-texinfo.el
index dd8c560..a19139f 100644
--- a/contrib/lisp/org-e-texinfo.el
+++ b/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.