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

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

[elpa] externals/ilist c3f0e61360 13/24: fix missing parameter


From: ELPA Syncer
Subject: [elpa] externals/ilist c3f0e61360 13/24: fix missing parameter
Date: Tue, 28 Dec 2021 16:58:13 -0500 (EST)

branch: externals/ilist
commit c3f0e61360064b9975cd1a456590490662ac9a19
Author: JSDurand <mmemmew@gmail.com>
Commit: JSDurand <mmemmew@gmail.com>

    fix missing parameter
    
    * ilist.el (ilist-forward-line): I should pass the value of
      NO-SKIP-INVISIBLE to ilist-skip-properties.  Without this the
      function ilist-map-lines does not work correctly.
---
 ilist.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ilist.el b/ilist.el
index b3c7005823..ff2371242c 100644
--- a/ilist.el
+++ b/ilist.el
@@ -879,10 +879,10 @@ skipped."
          (original-point (point))
          (arg (abs arg)))
     (ilist-skip-properties t forwardp
-                           '(ilist-header
-                             ilist-title-sep))
+                           '(ilist-header ilist-title-sep)
+                           no-skip-invisible)
     (ilist-skip-properties skip-groups forwardp
-                           '(ilist-group-header))
+                           '(ilist-group-header) no-skip-invisible)
     (cond ((and
             (/= original-point (point))
             (not (memq



reply via email to

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