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

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

[elpa] externals/orgalist 66be839 1/4: Really prevent any indentation at


From: Nicolas Goaziou
Subject: [elpa] externals/orgalist 66be839 1/4: Really prevent any indentation at items
Date: Sat, 5 May 2018 08:15:52 -0400 (EDT)

branch: externals/orgalist
commit 66be8396ec465916c5277c0285c16ba486cb65b1
Author: Nicolas Goaziou <address@hidden>
Commit: Nicolas Goaziou <address@hidden>

    Really prevent any indentation at items
    
    * orgalist.el (orgalist--indent-line): Return t instead of `noindent'
      at a non-empty item.
    
    Returning `noindent' still allows `indent-line-function' default value
    to kick in, according to `indent-according-to-mode'.
---
 orgalist.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/orgalist.el b/orgalist.el
index 808fe3a..e7fb69d 100644
--- a/orgalist.el
+++ b/orgalist.el
@@ -536,7 +536,7 @@ This function is meant to be used as a piece of advice on
                (skip-chars-backward " \r\t\n")
                (point)))
           ;; If the item is not empty, do not cycle indentation.
-          'noindent
+          t
         (orgalist--cycle-indentation struct)
         t)))
    ;; Within an item, indent according to the current bullet.



reply via email to

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