emacs-devel
[Top][All Lists]
Advanced

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

Re: [elpa] master 09380cc 1/2: packages/arbitools.el: minor fixes


From: Stefan Monnier
Subject: Re: [elpa] master 09380cc 1/2: packages/arbitools.el: minor fixes
Date: Tue, 03 May 2016 15:04:14 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux)

> --- a/packages/arbitools/arbitools.el
> +++ b/packages/arbitools/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))

Why?
The code never looks at this variable's value, AFAICT.

> @@ -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))
 
Same for those two variables.


        Stefan



reply via email to

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