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

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

[nongnu] elpa/toc-org 8321d3c76b 120/128: Revert "Respect the file-local


From: ELPA Syncer
Subject: [nongnu] elpa/toc-org 8321d3c76b 120/128: Revert "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 8321d3c76bc4cf70f9ea332a20b7d97f40826eab
Author: Sergei Nosov <sergei.nosov@gmail.com>
Commit: GitHub <noreply@github.com>

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

diff --git a/toc-org.el b/toc-org.el
index 9d2f194d89..5ca0f010e9 100644
--- a/toc-org.el
+++ b/toc-org.el
@@ -285,7 +285,7 @@ rules."
           (setq ret-path original-path))))
     (cons ret-type ret-path)))
 
-(defun toc-org-hrefify-toc (toc hrefify markdown-syntax-p list-offset 
&optional hash)
+(defun toc-org-hrefify-toc (toc hrefify markdown-syntax-p &optional hash)
   "Format the raw `toc' using the `hrefify' function to transform
 each heading into a link."
   (with-temp-buffer
@@ -298,7 +298,9 @@ each heading into a link."
 
             (while (looking-at "\\*")
               (delete-char 1)
-              (insert (make-string (+ 2 list-offset) ?\s)))
+              (insert (make-string
+                       (+ 2 (or (bound-and-true-p org-list-indent-offset) 0))
+                       ?\s)))
 
             (insert "-")
             (skip-chars-forward " ")
@@ -407,7 +409,6 @@ 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]