diff options
author | Glenn Morris <rgm@gnu.org> | 2009-09-30 02:32:44 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-09-30 02:32:44 +0000 |
commit | 1a5ee3eed4e77d07909c9ad797b036b6c07d9596 (patch) | |
tree | d2960745212d83a1c732e1a24ff8c4b5ead46a1a /lisp/org/org-colview.el | |
parent | d8085053bb3fd0124b962f874ec9c8ccf0918a35 (diff) | |
download | emacs-1a5ee3eed4e77d07909c9ad797b036b6c07d9596.tar.gz |
(org-columns-uncompile-format): Avoid assignment to free variable `fun'.
Diffstat (limited to 'lisp/org/org-colview.el')
-rw-r--r-- | lisp/org/org-colview.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org/org-colview.el b/lisp/org/org-colview.el index 73e6bed121a..42863b68b38 100644 --- a/lisp/org/org-colview.el +++ b/lisp/org/org-colview.el @@ -1015,7 +1015,7 @@ Don't set this, this is meant for dynamic scoping.") (defun org-columns-uncompile-format (cfmt) "Turn the compiled columns format back into a string representation." - (let ((rtn "") e s prop title op op-match width fmt printf) + (let ((rtn "") e s prop title op op-match width fmt printf fun) (while (setq e (pop cfmt)) (setq prop (car e) title (nth 1 e) |