branch: elpa/flymake-guile
commit e31c1e8b6aaefbe3a262980eb94ca2a5634d4540
Author: Distopico <[email protected]>
Commit: Distopico <[email protected]>
Update example and coumentation
---
NEWS | 7 +++++++
README.md | 10 ++++++++--
flymake-guile.el | 8 +++++++-
3 files changed, 22 insertions(+), 3 deletions(-)
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000000..ceaf639934
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,7 @@
+# -*- mode: org; coding: utf-8; -*-
+#+STARTUP: indent
+#+TITLE: flymake-guile NEWS – history of user-visible changes
+
+* NEWS
+** 0.3
+- Improve diagnostic column position
diff --git a/README.md b/README.md
index 5dfb931901..8e787e34da 100644
--- a/README.md
+++ b/README.md
@@ -23,11 +23,17 @@ Verify that `flymake-mode` is enabled ad then add the
following to
your Emacs configuration:
```elisp
-(require 'flymake-guile)
-
(add-hook 'scheme-mode-hook #'flymake-guile)
```
+Emacs 29 and later:
+
+```elisp
+(use-package flymake-guile
+ :ensure t
+ :hook (scheme-mode-hook . flymake-guile))
+```
+
## Customization
- `flymake-guile-warnings` The warning level or a list of warning
diff --git a/flymake-guile.el b/flymake-guile.el
index 7293d9ed1c..9d71f9d95f 100644
--- a/flymake-guile.el
+++ b/flymake-guile.el
@@ -3,7 +3,7 @@
;; Copyright (c) 2023 Camilo Q.S. (Distopico) <[email protected]>
;; Author: Distopico <[email protected]>
-;; Package-Requires: ((emacs "26.1"))
+;; Package-Requires: ((emacs "26.1") (flymake "1.2.1") (flymake-quickdef
"1.0.0"))
;; Keywords: language, tools
;; Version: 0.2
@@ -26,6 +26,12 @@
;;
;; Usage:
;; (add-hook 'scheme-mode-hook 'flymake-guile)
+;;
+;; Emacs 29 and later:
+;;
+;; (use-package flymake-guile
+;; :ensure t
+;; :hook (scheme-mode-hook . flymake-guile))
;;; Code: