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

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

[nongnu] elpa/toc-org 4d076d1e9d 118/128: Respect the file-local value o


From: ELPA Syncer
Subject: [nongnu] elpa/toc-org 4d076d1e9d 118/128: Respect the file-local value of org-list-indent-offset.
Date: Sun, 2 Jan 2022 09:59:15 -0500 (EST)

branch: elpa/toc-org
commit 4d076d1e9d4b23d24247eaa1c62a6d377fffb4bd
Author: Alexander Miller <alexanderm@web.de>
Commit: Alexander Miller <alexanderm@web.de>

    Respect the file-local value of org-list-indent-offset.
---
 toc-org.el | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/toc-org.el b/toc-org.el
index e2fff1d882..9341db6250 100644
--- a/toc-org.el
+++ b/toc-org.el
@@ -284,7 +284,7 @@ rules."
           (setq ret-path original-path))))
     (cons ret-type ret-path)))
 
-(defun toc-org-hrefify-toc (toc hrefify markdown-syntax-p &optional hash)
+(defun toc-org-hrefify-toc (toc hrefify markdown-syntax-p list-offset 
&optional hash)
   "Format the raw `toc' using the `hrefify' function to transform
 each heading into a link."
   (with-temp-buffer
@@ -297,9 +297,7 @@ each heading into a link."
 
             (while (looking-at "\\*")
               (delete-char 1)
-              (insert (make-string
-                       (+ 2 (or (bound-and-true-p org-list-indent-offset) 0))
-                       ?\s)))
+              (insert (make-string (+ 2 list-offset) ?\s)))
 
             (insert "-")
             (skip-chars-forward " ")
@@ -408,6 +406,7 @@ not :noexport_#:."
                               (toc-org-flush-subheadings (toc-org-raw-toc 
markdown-syntax-p) depth)
                               hrefify
                               markdown-syntax-p
+                              (or (bound-and-true-p org-list-indent-offset) 0)
                               (when toc-org-hrefify-hash
                                 (clrhash toc-org-hrefify-hash)))
                              toc-suffix)))



reply via email to

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