~ruther/guix-local

5e6c90121f88b05b6d61e2b36aa27f5f4ce21bcd — Ludovic Courtès 13 years ago d25468b
location: Start column numbers at 1.

* guix/utils.scm (source-properties->location): Use COL + 1.
1 files changed, 2 insertions(+), 1 deletions(-)

M guix/utils.scm
M guix/utils.scm => guix/utils.scm +2 -1
@@ 662,4 662,5 @@ etc."
  (let ((file (assq-ref loc 'filename))
        (line (assq-ref loc 'line))
        (col  (assq-ref loc 'column)))
    (location file (and line (+ line 1)) col)))
    ;; In accordance with the GCS, start line and column numbers at 1.
    (location file (and line (+ line 1)) (and col (+ col 1)))))