mirror of
https://github.com/org-roam/org-roam
synced 2025-08-01 12:17:21 -05:00
(internal): fix CI for compat functions (#1031)
Following the advice from the coding conventions from the Emacs manual, we preface the compatibility functions with the org-roam namespace.
This commit is contained in:
@ -82,8 +82,20 @@
|
||||
(define-obsolete-function-alias 'org-roam-db--clear 'org-roam-db-clear
|
||||
"org-roam 1.2.0")
|
||||
|
||||
(when (version< (org-version) "9.3")
|
||||
(defalias 'org-link-make-string 'org-make-link-string))
|
||||
(defalias 'org-roam-link-make-string
|
||||
(if (fboundp 'org-link-make-string)
|
||||
'org-link-make-string
|
||||
'org-make-link-string))
|
||||
|
||||
(defalias 'org-roam-link-store-props
|
||||
(if (fboundp 'org-link-store-props)
|
||||
'org-link-store-props
|
||||
'org-store-link-props))
|
||||
|
||||
(defalias 'org-roam-link-decode
|
||||
(if (fboundp 'org-link-decode)
|
||||
'org-link-decode
|
||||
'org-link-escape))
|
||||
|
||||
;;;; Variables
|
||||
(define-obsolete-variable-alias 'org-roam-graphviz-extra-options
|
||||
|
Reference in New Issue
Block a user