[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] scratch/editorconfig-cc 6cf680e9c7 112/351: Print line number a
From: |
Stefan Monnier |
Subject: |
[nongnu] scratch/editorconfig-cc 6cf680e9c7 112/351: Print line number and its content on parse error (#95) |
Date: |
Thu, 13 Jun 2024 18:38:45 -0400 (EDT) |
branch: scratch/editorconfig-cc
commit 6cf680e9c73a920db0233b4374a901f634b70501
Author: 10sr <8slashes+git@gmail.com>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
Print line number and its content on parse error (#95)
---
editorconfig-core-handle.el | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/editorconfig-core-handle.el b/editorconfig-core-handle.el
index 042d05c356..84e69e8fa2 100644
--- a/editorconfig-core-handle.el
+++ b/editorconfig-core-handle.el
@@ -157,6 +157,8 @@ If CONF is not found return nil."
;; Alist of properties for current PATTERN
(props ())
+ ;; Current line num
+ (current-line-number 1)
)
(while (not (eq (point) point-max))
(setq line
@@ -183,8 +185,10 @@ If CONF is not found return nil."
(let ((idx (string-match "=\\|:"
line)))
(unless idx
- (error (format "Failed to parse file: %s"
- conf)))
+ (error "Error while reading config file: %s:%d:\n %s\n"
+ conf
+ current-line-number
+ line))
(let (
(key (downcase (editorconfig-core-handle--string-trim
(substring line
@@ -202,7 +206,12 @@ If CONF is not found return nil."
(setq top-props
`(,@top-props (,key . ,value))))))))
)
- (forward-line 1))
+ (setq current-line-number
+ (1+ current-line-number))
+ ;; Use this code instead of goto-line for Lisp program
+ (goto-char (point-min))
+ (forward-line (1- current-line-number))
+ )
(when pattern
(setq all-props
`(,@all-props (,pattern . ,props))))
- [nongnu] scratch/editorconfig-cc 0d24b868d1 133/351: Add more plugin tests, (continued)
- [nongnu] scratch/editorconfig-cc 0d24b868d1 133/351: Add more plugin tests, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 97c22ffe64 109/351: Remove link to Marmalade package repository, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 332df3265f 140/351: Fix assignment to free variable warnings, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc faa796ffc8 101/351: Use GFM style code block, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 4e5526d1d9 149/351: Add file_type_emacs entry for .editorconfig, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc b70817d18d 139/351: Catch error thrown from editorconfig-custom-hooks, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 87d78d5746 106/351: Add examples for core-handle members, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc ef4f52c512 126/351: Fix a doc string., Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 4f7a5b0c53 104/351: Use truename for editorconfig name, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 9de91946be 134/351: By default always use Emacs Lisp Core when accessing remote files (#118), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 6cf680e9c7 112/351: Print line number and its content on parse error (#95),
Stefan Monnier <=
- [nongnu] scratch/editorconfig-cc 05f63eca50 136/351: Update year in copyright, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 58e2e82ce3 151/351: Add apache-mode support (#135), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc a38a4f2111 160/351: Add tests for lisp-indent-offset ignore, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 4615e1b66b 108/351: Bump version to 0.7.6, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 25edbde066 142/351: Add support for feature mode. (#128), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc d6632cb80b 111/351: Add a note about deprecating marmalade repository, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 34ad61d6f8 119/351: Bump version to 0.7.7, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 907a4afa7a 143/351: Set `fill-column` directly, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 302afbb3e3 150/351: Add file_type_emacs to editorocnfig-conf-mode keywords, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 849229726d 127/351: Massive reformatting of docstrings., Stefan Monnier, 2024/06/13