[elpa] externals/orgalist 4341eb7: Fix indentation in Text mode in Emacs 27

2019-12-31 Thread Nicolas Goaziou
branch: externals/orgalist
commit 4341eb71b14416bd0e59fb1000f6fdf422515f8b
Author: Nicolas Goaziou 
Commit: Nicolas Goaziou 

Fix indentation in Text mode in Emacs 27

* orgalist.el (orgalist-mode): Make `indent-line-function'
buffer-local to adapt to changes introduced in Emacs 27.

Reported-by: Gregor Zattler 

---
 orgalist.el | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/orgalist.el b/orgalist.el
index 3a3cfaa..433dee1 100644
--- a/orgalist.el
+++ b/orgalist.el
@@ -818,6 +818,12 @@ C-c C-c `orgalist-check-item'"
 (add-function :before-until
   (local 'fill-paragraph-function)
   #'orgalist--fill-item)
+;; Unless `indent-line-function' is buffer-local before it is
+;; advised with `add-function', the workaround for bug#31361 below
+;; will not work, as (advice--cd*r indent-line-function) will not
+;; compare `eq' to `indent-relative' in
+;; `indent-according-to-mode'.
+(make-local-variable 'indent-line-function)
 (add-function :before-until
   (local 'indent-line-function)
   #'orgalist--indent-line)



[elpa] externals/orgalist 0a47530: Bump to version 1.10

2019-12-31 Thread Nicolas Goaziou
branch: externals/orgalist
commit 0a475300ad6edacbb678461c60c8ee159d42d0b6
Author: Nicolas Goaziou 
Commit: Nicolas Goaziou 

Bump to version 1.10
---
 orgalist.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/orgalist.el b/orgalist.el
index 433dee1..e1f25bd 100644
--- a/orgalist.el
+++ b/orgalist.el
@@ -6,7 +6,7 @@
 ;; Maintainer: Nicolas Goaziou 
 ;; Keywords: convenience
 ;; Package-Requires: ((emacs "24.4"))
-;; Version: 1.9
+;; Version: 1.10
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by