1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Removes pkg-info and epl as depdendencies by replacing functions provided by them with built ins.
# https://github.com/flycheck/flycheck/pull/1818
diff --git a/flycheck.el b/flycheck.el
index e3722fd50..33e667671 100644
--- a/flycheck.el
+++ b/flycheck.el
@@ -10,7 +10,7 @@
;; URL: http://www.flycheck.org
;; Keywords: convenience, languages, tools
;; Version: 32-cvs
-;; Package-Requires: ((dash "2.12.1") (pkg-info "0.4") (let-alist "1.0.4") (seq "1.11") (emacs "24.3"))
+;; Package-Requires: ((dash "2.12.1") (let-alist "1.0.4") (seq "1.11") (emacs "24.3"))
;; This file is not part of GNU Emacs.
@@ -79,6 +79,7 @@
(require 'rx) ; Regexp fanciness in `flycheck-define-checker'
(require 'help-mode) ; `define-button-type'
(require 'find-func) ; `find-function-regexp-alist'
+(require 'lisp-mnt) ; `lm-version'
(require 'json) ; `flycheck-parse-tslint'
(require 'ansi-color) ; `flycheck-parse-with-patterns-without-color'
@@ -90,9 +91,6 @@
(defvar markdown-fontify-code-block-default-mode) ; For rust-error-explainer
(defvar markdown-fontify-code-blocks-natively) ;
-;; Tell the byte compiler about autoloaded functions from packages
-(declare-function pkg-info-version-info "pkg-info" (package))
-
;;; Compatibility
(eval-and-compile
@@ -1284,7 +1282,7 @@ If the version number could not be determined, signal an error,
if called interactively, or if SHOW-VERSION is non-nil, otherwise
just return nil."
(interactive (list t))
- (let ((version (pkg-info-version-info 'flycheck)))
+ (let ((version (lm-version (find-library-name "flycheck"))))
(when show-version
(message "Flycheck version: %s" version))
version))
|