summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2011-03-20 10:06:25 +0100
committerCarsten Dominik <carsten.dominik@gmail.com>2011-03-20 10:06:25 +0100
commit3d802ee691664ee93c1680e323a3486d972db578 (patch)
treec6fd8fa1683867cb922ff42f2f2d06b8795549ad
parent74169a8029b72e80eda1f68579e17752c85c4fd3 (diff)
downloadorg-mode-3d802ee691664ee93c1680e323a3486d972db578.tar.gz
Keep byte compiler happy
* lisp/org-table.el (org-table-formula-handle-first/last-rc): Bind `char'.
-rw-r--r--lisp/org-table.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-table.el b/lisp/org-table.el
index 46c7970..3573032 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -2889,7 +2889,7 @@ when a line/row is swaped out of that privileged position. So for
formulas that use a range of rows or columns, it may often be better
to anchor the formula with \"I\" row markers, or to offset from the
borders of the table using the @< @> $< $> makers."
- (let (n nmax len)
+ (let (n nmax len char)
(while (string-match "\\([@$]\\)\\(<+\\|>+\\)" s)
(setq nmax (if (equal (match-string 1 s) "@")
(1- (length org-table-dlines))