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

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

[elpa] externals/arbitools 80b7021 17/29: packages/arbitools.el: minor f


From: Stefan Monnier
Subject: [elpa] externals/arbitools 80b7021 17/29: packages/arbitools.el: minor fixes
Date: Sun, 29 Nov 2020 19:00:36 -0500 (EST)

branch: externals/arbitools
commit 80b702180a054cfff53a341157c849acdea85f7b
Author: David Gonzalez Gandara <dggandara@member.fsf.org>
Commit: David Gonzalez Gandara <dggandara@member.fsf.org>

    packages/arbitools.el: minor fixes
---
 arbitools.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/arbitools.el b/arbitools.el
index 8c43e78..76fe0bc 100644
--- a/arbitools.el
+++ b/arbitools.el
@@ -273,6 +273,7 @@
   (interactive)
   (save-excursion
     (let ( (numberofrounds (arbitools-number-of-rounds))
+           (pointsstring   "")
            (points         0.0)
            (pointstosum    0.0)
            (roundcount     1))
@@ -283,7 +284,7 @@
         (while (<= roundcount numberofrounds)
           (beginning-of-line)
          (forward-char (+ 98 (* (- roundcount 1) 10))) ;; go to where the 
result is for each round
-          ;; FIXME: Use pcase?
+          (setq pointsstring (thing-at-point 'symbol))
           (cond ((string= (thing-at-point 'symbol) "1") (setq pointstosum 1.0))
                 ((string= (thing-at-point 'symbol) "+") (setq pointstosum 1.0))
                 ((string= (thing-at-point 'symbol) "=") (setq pointstosum 0.5))
@@ -309,7 +310,7 @@
     (let ((datachunk ""))
       (goto-char (point-min))
       (while (re-search-forward "^001" nil t)
-        (let* () ;; (linestring (thing-at-point 'line))
+        (let* ((linestring (thing-at-point 'line)))
           (beginning-of-line)
           (forward-char 89) ;; get the POS field
           (setq datachunk (thing-at-point 'word))
@@ -410,6 +411,7 @@
                  (save-excursion 
                    (while (re-search-forward "^013" nil t)
                     (let* ((linestringteam (thing-at-point 'line))
+                          (actualintegrant (string-to-number (substring 
linestringteam 40 44)))
                           (integrantcount 0)
                           (members 0))
 



reply via email to

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