aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/use-package
diff options
context:
space:
mode:
authorAlex Branham2018-01-08 19:21:46 -0600
committerAlex Branham2018-01-08 19:21:46 -0600
commit8a6430835fa236c034c3a3ef4e915087299d9dc6 (patch)
tree50989c1f0f37db51010c289f0501a86b40b5db5c /lisp/use-package
parent13a9e339f24b07a1ddde7cc0500a1e7a1787d4ab (diff)
downloademacs-8a6430835fa236c034c3a3ef4e915087299d9dc6.tar.gz
emacs-8a6430835fa236c034c3a3ef4e915087299d9dc6.zip
Prefer org-table-align to orgtbl-ctrl-c-ctrl-c
org-table-align is an autoloaded function so the byte compiler can find it. orgtbl-ctrl-c-ctrl-c isn't so we get a warning about undefined functions.
Diffstat (limited to 'lisp/use-package')
-rw-r--r--lisp/use-package/use-package-core.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el
index c4c251e9a00..469b3f7b23c 100644
--- a/lisp/use-package/use-package-core.el
+++ b/lisp/use-package/use-package-core.el
@@ -983,7 +983,7 @@ meaning:
983 use-package-statistics) 983 use-package-statistics)
984 (goto-char (point-min)) 984 (goto-char (point-min))
985 (orgtbl-mode) 985 (orgtbl-mode)
986 (orgtbl-ctrl-c-ctrl-c nil) 986 (org-table-align)
987 (display-buffer (current-buffer)))) 987 (display-buffer (current-buffer))))
988 988
989(defun use-package-statistics-gather (keyword name after) 989(defun use-package-statistics-gather (keyword name after)