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

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

[nongnu] elpa/org-superstar 401bc67302 119/162: Updating README: add hac


From: Stefan Kangas
Subject: [nongnu] elpa/org-superstar 401bc67302 119/162: Updating README: add hack for dealing with legacy Org
Date: Fri, 31 Dec 2021 19:35:35 -0500 (EST)

branch: elpa/org-superstar
commit 401bc67302517d0607a37697b5a196dede664a52
Author: D. Williams <d.williams@posteo.net>
Commit: D. Williams <d.williams@posteo.net>

    Updating README: add hack for dealing with legacy Org
---
 README.org | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/README.org b/README.org
index b607ec6e1f..1f2abe50d5 100644
--- a/README.org
+++ b/README.org
@@ -254,6 +254,22 @@ used, allowing the user to inherit the level-dependent 
default look.
     =org-superstar-toggle-lightweight-lists=.  See also the subsection
     "*Fast Plain List Items*" above.
 
+** "I get an error when trying to use it."
+   This of course should not happen.  If your problem is not listed
+   below, please file a bug report!
+*** Unknown function: ~org-element-lineage~
+    This is one of the functions my package relies on missing in older
+    versions of Org.  The following hack should circumvent the issue,
+    at the cost of the package treating some comments in code blocks
+    as lists.  Just put it in your ~.emacs~ before loading up the
+    package.  If I messed up, be sure to open an Issue!
+    #+BEGIN_SRC emacs-lisp
+      (setq-default org-superstar-lightweight-lists t)
+      (defun org-element-lineage (x)
+        "Mock function for future Org feature."
+        nil)
+    #+END_SRC
+
 ** "What are these weird points in front of heading bullets?"
    While Org Bullet mode ships only with a feature to hide leading
    stars, Org Superstar allows you to customize leading stars to still



reply via email to

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