diff options
| author | Masaya Tojo <masaya@tojo.tokyo> | 2024-03-25 02:17:55 +0900 | 
|---|---|---|
| committer | Masaya Tojo <masaya@tojo.tokyo> | 2024-03-25 02:17:55 +0900 | 
| commit | 37987861ad2b3c93dcd9d8055840a386ab793dec (patch) | |
| tree | e8fdd4cf747f18a16470bf838e12dae54540521f /readers | |
| parent | 2ba326becc1c9546cf028a8ddb0ff8307c6e4eff (diff) | |
Add underscore prefix to unused local variable.
Diffstat (limited to 'readers')
| -rw-r--r-- | readers/article.rkt | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/readers/article.rkt b/readers/article.rkt index 687adcc..df5e8e8 100644 --- a/readers/article.rkt +++ b/readers/article.rkt @@ -49,7 +49,7 @@             (cond               [(article-with-tags? article) article]               [else -              (let-values ([(_nl nc np) (port-next-location in)]) +              (let-values ([(_nl _nc np) (port-next-location in)])                  (raise-read-error (format "read-article: ~a" article)                                    (object-name in)                                    l c p | 
