[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/flymake-codespell d72e3ad4cd 15/15: Prepare release on
From: |
ELPA Syncer |
Subject: |
[elpa] externals/flymake-codespell d72e3ad4cd 15/15: Prepare release on GNU ELPA; bump version to 0.1 |
Date: |
Mon, 30 Oct 2023 18:58:25 -0400 (EDT) |
branch: externals/flymake-codespell
commit d72e3ad4cdfd5cea1509a241d55e18f54ae2aeca
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Stefan Kangas <stefankangas@gmail.com>
Prepare release on GNU ELPA; bump version to 0.1
---
README.org | 4 ++--
flymake-codespell.el | 37 +++++++++++++++++++------------------
2 files changed, 21 insertions(+), 20 deletions(-)
diff --git a/README.org b/README.org
index 0949277963..3e9b5420a9 100644
--- a/README.org
+++ b/README.org
@@ -7,8 +7,8 @@ automatically highlight errors as you type. It requires Emacs
version
Unlike most other spellcheckers, codespell does not have a dictionary
of known words. Instead it has a list of common typos, and checks
only for those. This means that it's far less likely to generate
-false positives, especially when used on source code, or technical
-documentation and research.
+false positives, especially when used on source code, or any file with
+a lot of specific terms like documentation or research.
* Prerequisites
diff --git a/flymake-codespell.el b/flymake-codespell.el
index 0d13052fc7..bf2385f9ed 100644
--- a/flymake-codespell.el
+++ b/flymake-codespell.el
@@ -1,10 +1,10 @@
;;; flymake-codespell.el --- Flymake backend for codespell -*-
lexical-binding: t -*-
-;; Copyright (C) 2022 Stefan Kangas
+;; Copyright (C) 2022-2023 Free Software Foundation, Inc.
;; Author : Stefan Kangas <stefankangas@gmail.com>
;; Maintainer : Stefan Kangas <stefankangas@gmail.com>
-;; Version : 0
+;; Version : 0.1
;; URL : https://www.github.com/skangas/flymake-codespell
;; Keywords : extensions
;; SPDX-License-Identifier: GPL-3.0-or-later
@@ -25,13 +25,13 @@
;;; Commentary:
-;; This adds a codespell backend for flymake-mode in Emacs.
+;; This adds a codespell backend for `flymake-mode' in Emacs.
;;
-;; Unlike most other spellcheckers, codespell does not have a
-;; dictionary of known words. Instead it has a list of common typos,
-;; and checks only for those. This means that it’s far less likely to
-;; generate false positives, especially when used on source code, or
-;; technical documentation and research.
+;; Unlike most other spellcheckers, codespell does not have a dictionary of
+;; known words. Instead it has a list of common typos, and checks only for
+;; those. This means that it’s far less likely to generate false
+;; positives, especially when used on source code, or any file with a lot
+;; of specific terms like documentation or research.
;;
;; Install this package using
;;
@@ -66,7 +66,7 @@
"Name of the codespell executable."
:type 'string)
-(defcustom codespell-program-arguments ""
+(defcustom flymake-codespell-program-arguments ""
"Arguments passed to the codespell executable.
The \"--disable-colors\" flag is passed unconditionally.
@@ -106,9 +106,9 @@ LOCUS, BEG, END, TYPE and TEXT are passed as is to
:buffer (generate-new-buffer " *flymake-codespell*")
:command `(,flymake-codespell-program
"--disable-colors"
- ,@(when (and (stringp codespell-program-arguments)
- (> (length codespell-program-arguments) 0))
- (list codespell-program-arguments))
+ ,@(when (and (stringp flymake-codespell-program-arguments)
+ (> (length
flymake-codespell-program-arguments) 0))
+ (list flymake-codespell-program-arguments))
"-")
:sentinel
(lambda (proc _event)
@@ -131,12 +131,13 @@ LOCUS, BEG, END, TYPE and TEXT are passed as is to
source
(string-to-number (match-string 1)))
when (and beg end)
- collect (flymake-codespell--make-diagnostic typo
- source
- beg
- end
- :error
- msg)
+ collect (flymake-codespell--make-diagnostic
+ typo
+ source
+ beg
+ end
+ :error
+ msg)
into diags
finally (funcall report-fn diags)))
(flymake-log :warning "Canceling obsolete check %s"
- [elpa] branch externals/flymake-codespell created (now d72e3ad4cd), ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell 816d7dd5d9 02/15: Add README.org, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell 15a2ae9094 05/15: Add .elpaignore, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell 325b12e24f 09/15: Highlight only the matched word, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell d72e3ad4cd 15/15: Prepare release on GNU ELPA; bump version to 0.1,
ELPA Syncer <=
- [elpa] externals/flymake-codespell 58adc47c7f 01/15: Initial commit, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell da9c09e25d 03/15: Improve comment headers and commentary, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell 74fd62b40d 04/15: Add Makefile, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell b95cb59730 06/15: Add GitHub CI workflow, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell f7ba43c2b1 07/15: Improve README.org, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell 41d99c4598 08/15: Add user option codespell-program-arguments, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell 15abe9fbe7 10/15: Update GPLv3 from gnulib, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell a994271e1a 11/15: Add codespell action for GitHub CI, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell b80075a0a5 13/15: Bump actions/checkout from 3 to 4, ELPA Syncer, 2023/10/30
- [elpa] externals/flymake-codespell d7782f3ab4 12/15: Fix typos, ELPA Syncer, 2023/10/30