Browse Source

org-table: Small refactoring

* lisp/org-table.el (org-table-fix-formulas): Eliminate a local
variable.
Marco Wahl 4 years ago
parent
commit
c990d43a64
1 changed files with 2 additions and 3 deletions
  1. 2 3
      lisp/org-table.el

+ 2 - 3
lisp/org-table.el

@@ -2250,8 +2250,7 @@ For all numbers larger than LIMIT, shift them by DELTA."
   (save-excursion
     (goto-char (org-table-end))
     (while (let ((case-fold-search t)) (looking-at "[ \t]*#\\+tblfm:"))
-      (let ((msg "The formulas in #+TBLFM have been updated")
-	    (re (concat key "\\([0-9]+\\)"))
+      (let ((re (concat key "\\([0-9]+\\)"))
 	    (re2
 	     (when remove
 	       (if (or (equal key "$") (equal key "$LR"))
@@ -2275,7 +2274,7 @@ For all numbers larger than LIMIT, shift them by DELTA."
 	      (replace-match (concat key (cdr a)) t t))
 	     ((and limit (> n limit))
 	      (replace-match (concat key (number-to-string (+ n delta))) t t)))))
-	(message msg))
+	(message "The formulas in #+TBLFM have been updated"))
       (forward-line))))
 
 ;;;###autoload