emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/orgit 1e578f8cf9 53/76: Define org-link-store-props as an


From: ELPA Syncer
Subject: [nongnu] elpa/orgit 1e578f8cf9 53/76: Define org-link-store-props as an alias for org-store-link-props
Date: Thu, 13 Jan 2022 13:58:46 -0500 (EST)

branch: elpa/orgit
commit 1e578f8cf97b07835f02858f05a094ae9a5e99bb
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    Define org-link-store-props as an alias for org-store-link-props
    
    That way `orgit' can be used with Org 9.3 and also earlier
    versions. This function was renamed from `org-store-link-props'
    to `org-link-store-props' in what will be released as 9.3, but
    no alias was added.  Org's Elpa archive ships the "maint" branch
    but this change is only on "master".
    
    Closes #32.
---
 orgit.el | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/orgit.el b/orgit.el
index 44027b6276..fb4e8f985a 100644
--- a/orgit.el
+++ b/orgit.el
@@ -94,6 +94,9 @@
 (require 'magit)
 (require 'org)
 
+(unless (fboundp 'org-link-store-props)
+  (defalias 'org-link-store-props 'org-store-link-props))
+
 (eval-when-compile
   (require 'subr-x))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]