Fix: Sharp-quote alias targets

This commit is contained in:
Adam Porter 2019-07-17 09:22:01 -05:00
parent 8a8f78408c
commit 3e9f3276c0
2 changed files with 3 additions and 3 deletions

View file

@ -46,7 +46,7 @@
(declare-function org-super-agenda--group-items "ext:org-super-agenda") (declare-function org-super-agenda--group-items "ext:org-super-agenda")
(when (version< org-version "9.2") (when (version< org-version "9.2")
(defalias 'org-get-tags 'org-get-tags-at)) (defalias 'org-get-tags #'org-get-tags-at))
;;;; Variables ;;;; Variables

View file

@ -44,8 +44,8 @@
;;;; Compatibility ;;;; Compatibility
(when (version< org-version "9.2") (when (version< org-version "9.2")
(defalias 'org-get-tags 'org-get-tags-at) (defalias 'org-get-tags #'org-get-tags-at)
(defalias 'org-timestamp-to-time 'org-timestamp--to-internal-time)) (defalias 'org-timestamp-to-time #'org-timestamp--to-internal-time))
;;;; Variables ;;;; Variables