0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-22 08:40:45 +00:00

Keep byte compiler happy

This commit is contained in:
Carsten Dominik 2011-10-16 16:54:52 +02:00
parent 782a172110
commit a9a304d938

View file

@ -18027,6 +18027,7 @@ When in an #+include line, visit the include file. Otherwise call
(call-interactively 'org-table-edit-formulas))
(t (call-interactively 'ffap))))
(defvar org-table-coordinate-overlays) ; defined in org-table.el
(defun org-ctrl-c-ctrl-c (&optional arg)
"Set tags in headline, or update according to changed information at point.
@ -18167,8 +18168,9 @@ This command does many different things, depending on context:
(t
(let ((org-inhibit-startup-visibility-stuff t)
(org-startup-align-all-tables nil))
(mapc 'delete-overlay org-table-coordinate-overlays)
(setq org-table-coordinate-overlays nil)
(when (boundp 'org-table-coordinate-overlays)
(mapc 'delete-overlay org-table-coordinate-overlays)
(setq org-table-coordinate-overlays nil))
(org-save-outline-visibility 'use-markers (org-mode-restart)))
(message "Local setup has been refreshed"))))
((org-clock-update-time-maybe))