]> code.delx.au - gnu-emacs/commitdiff
Fix bugs that screwed M-x battery on Yeeloong
authorRichard M. Stallman <rms@gnu.org>
Fri, 21 Mar 2014 23:20:31 +0000 (19:20 -0400)
committerRichard M. Stallman <rms@gnu.org>
Fri, 21 Mar 2014 23:20:31 +0000 (19:20 -0400)
* lisp/battery.el (battery-linux-sysfs): Search for each field
from the beginning of the buffer.

lisp/ChangeLog
lisp/battery.el

index cdb9c3536a68981e644876639ddf6cc51ec7f3fd..90a608a069d8d7db8fc12435c7d8a001024d6eba 100644 (file)
@@ -1,5 +1,8 @@
 2014-03-21  Richard Stallman  <rms@gnu.org>
 
+       * battery.el (battery-linux-sysfs): Search for each field
+       from the beginning of the buffer.
+
        * subr.el (set-transient-map): Clear out function and value
        of the temporary symbol when we're done with it.
 
index 28ddf368f5f5394ff808e33e73585bd5ccc853a4..1eef80ab33902462a6c5d8643305d025a783dd93 100644 (file)
@@ -458,12 +458,15 @@ The following %-sequences are provided:
          (and (re-search-forward "POWER_SUPPLY_STATUS=\\(.*\\)$" nil t)
               (member charging-state '("Unknown" "Full" nil))
               (setq charging-state (match-string 1)))
+         (goto-char (point-min))
          (when (re-search-forward
                  "POWER_SUPPLY_\\(CURRENT\\|POWER\\)_NOW=\\([0-9]*\\)$"
                  nil t)
            (setq rate (float (string-to-number (match-string 2)))))
+         (goto-char (point-min))
          (when (re-search-forward "POWER_SUPPLY_TEMP=\\([0-9]*\\)$" nil t)
            (setq temperature (match-string 1)))
+         (goto-char (point-min))
          (let (full-string now-string)
            ;; Sysfs may list either charge (mAh) or energy (mWh).
            ;; Keep track of both, and choose which to report later.
@@ -477,7 +480,8 @@ The following %-sequences are provided:
                                        (string-to-number full-string))
                         charge-now  (+ charge-now
                                        (string-to-number now-string))))
-                 ((and (re-search-forward
+                 ((and (progn (goto-char (point-min)) t)
+                       (re-search-forward
                         "POWER_SUPPLY_ENERGY_FULL=\\([0-9]*\\)$" nil t)
                        (setq full-string (match-string 1))
                        (re-search-forward