diff options
author | Alex Branham <alex.branham@gmail.com> | 2018-01-08 19:21:46 -0600 |
---|---|---|
committer | Alex Branham <alex.branham@gmail.com> | 2018-01-08 19:21:46 -0600 |
commit | 8a6430835fa236c034c3a3ef4e915087299d9dc6 (patch) | |
tree | 50989c1f0f37db51010c289f0501a86b40b5db5c /lisp/use-package | |
parent | 13a9e339f24b07a1ddde7cc0500a1e7a1787d4ab (diff) | |
download | emacs-8a6430835fa236c034c3a3ef4e915087299d9dc6.tar.gz emacs-8a6430835fa236c034c3a3ef4e915087299d9dc6.tar.bz2 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.el | 2 |
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: use-package-statistics) (goto-char (point-min)) (orgtbl-mode) - (orgtbl-ctrl-c-ctrl-c nil) + (org-table-align) (display-buffer (current-buffer)))) (defun use-package-statistics-gather (keyword name after) |