diff options
author | João Távora <joaotavora@gmail.com> | 2020-05-13 11:31:21 +0100 |
---|---|---|
committer | João Távora <joaotavora@gmail.com> | 2020-05-13 11:31:35 +0100 |
commit | 9ebf51999ce58cccc2a228fd07a18c7b472dd3fd (patch) | |
tree | 5421f57de1e87e4c92d2ea41d18418eb5f3eb49c /lisp/progmodes/xref.el | |
parent | ac298baa0edf1426f2d46811b113f338f695e04c (diff) | |
download | emacs-9ebf51999ce58cccc2a228fd07a18c7b472dd3fd.tar.gz emacs-9ebf51999ce58cccc2a228fd07a18c7b472dd3fd.tar.bz2 emacs-9ebf51999ce58cccc2a228fd07a18c7b472dd3fd.zip |
Turn Eldoc, Xref and Project into GNU ELPA :core packages
The new packages state they require Emacs 26.3 to function, but a
small part of project.el breaks this "soft" rule: the two functions
requiring fileloop.el are incompatible with Emacs 26.3.
* lisp/jsonrpc.el: Tweak comment near Package-Requires.
* lisp/emacs-lisp/eldoc.el: Add Version and Package-Requires.
* lisp/progmodes/flymake.el: Add comment near Package-Requires.
* lisp/progmodes/project.el: Add Version and Package-Requires.
* lisp/progmodes/xref.el: Add Version and Package-Requires.
Diffstat (limited to 'lisp/progmodes/xref.el')
-rw-r--r-- | lisp/progmodes/xref.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index c36a9bd9940..b516ff0fe95 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el @@ -1,6 +1,11 @@ ;; xref.el --- Cross-referencing commands -*-lexical-binding:t-*- ;; Copyright (C) 2014-2020 Free Software Foundation, Inc. +;; Version: 1.0.0 +;; Package-Requires: ((emacs "26.3") (project "0.1")) + +;; This is a GNU ELPA :core package. Avoid functionality that is not +;; compatible with the version of Emacs recorded above. ;; This file is part of GNU Emacs. |