summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-04-29 15:54:32 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-05-31 14:52:14 -0400
commit53cd5923ef97d8ef62a15aee3fb052cf845ee9da (patch)
tree18cef1b6a2c537897c0795c7c934d82b84c7845f /guix
parentd7c4e7a0c238fa5e51b32a84e4c244d553f05621 (diff)
downloadguix-patches-53cd5923ef97d8ef62a15aee3fb052cf845ee9da.tar
guix-patches-53cd5923ef97d8ef62a15aee3fb052cf845ee9da.tar.gz
diagnostics: Fix typo about 0-indexed COL in location.
* guix/diagnostics.scm (source-properties->location): The location column is 0-indexed, not 1-indexed (the same as in source-properties, so the code is accurate).
Diffstat (limited to 'guix')
-rw-r--r--guix/diagnostics.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/diagnostics.scm b/guix/diagnostics.scm
index bf1ced8140..9f0d558f2f 100644
--- a/guix/diagnostics.scm
+++ b/guix/diagnostics.scm
@@ -232,7 +232,7 @@ macro-expansion time."
by Guile's `source-properties', `frame-source', `current-source-location',
etc."
;; In accordance with the GCS, start line and column numbers at 1. Note
- ;; that unlike LINE and `port-column', COL is actually 1-indexed here...
+ ;; that unlike LINE and `port-column', COL is actually 0-indexed here...
(match loc
((('line . line) ('column . col) ('filename . file)) ;common case
(and file line col