bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#24537: [PATCH] Fix compatibility with macOS 10.12 pmset (bug#24537)


From: Alan Third
Subject: bug#24537: [PATCH] Fix compatibility with macOS 10.12 pmset (bug#24537)
Date: Thu, 29 Sep 2016 20:31:02 +0100
User-agent: Mutt/1.7.0 (2016-08-17)

* lisp/battery.el (battery-pmset): Recognise and ignore battery id if
present in output.
---
 lisp/battery.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/battery.el b/lisp/battery.el
index 1b58489..90e4f5a 100644
--- a/lisp/battery.el
+++ b/lisp/battery.el
@@ -625,7 +625,7 @@ battery-pmset
       (goto-char (point-min))
       (when (re-search-forward "\\(?:Currentl?y\\|Now\\) drawing from 
'\\(AC\\|Battery\\) Power'" nil t)
        (setq power-source (match-string 1))
-       (when (re-search-forward "^ -InternalBattery-0[ \t]+" nil t)
+       (when (re-search-forward "^ -InternalBattery-0\\([ 
\t]+\(id\=[0-9]+\)\\)*[ \t]+" nil t)
          (when (looking-at "\\([0-9]\\{1,3\\}\\)%")
            (setq load-percentage (match-string 1))
            (goto-char (match-end 0))
-- 

Hi Kevin,

Can you give this patch a go?
-- 
Alan Third





reply via email to

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