Add missing builtin package declarations
* lisp/finder.el (finder--builtins-alist): Add new package
directories 'leim' and 'obsolete' as part of the 'emacs' package.
Add new package directory 'use-package' as part of the
'use-package' package.
* lisp/net/eudc-capf.el:
* lisp/net/eudcb-ecomplete.el:
* lisp/net/eudcb-macos-contacts.el:
* lisp/net/eudcb-mailabbrev.el: Declare library as part of the
'eudc' package.
* lisp/mail/ietf-drums-date.el: Declare library as part of the
'ietf-drums' package.
* lisp/image/image-dired-dired.el:
* lisp/image/image-dired-external.el:
* lisp/image/image-dired-tags.el:
* lisp/image/image-dired-util.el: Declare library as part of the
'image-dired' package.
* lisp/emacs-lisp/oclosure.el:
* lisp/keymap.el:
* lisp/progmodes/c-ts-common.el: Declare library as part of the
'emacs' package. (Bug#62751)
(cherry picked from commit 94b1de2774
)
This commit is contained in:
parent
71a1f0fdc9
commit
9aab258b80
13 changed files with 39 additions and 15 deletions
|
@ -3,6 +3,7 @@
|
||||||
;; Copyright (C) 2021-2023 Free Software Foundation, Inc.
|
;; Copyright (C) 2021-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
|
;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
;; Package: emacs
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,9 @@ would otherwise be.")
|
||||||
("gnus" . gnus)
|
("gnus" . gnus)
|
||||||
("international" . emacs)
|
("international" . emacs)
|
||||||
("language" . emacs)
|
("language" . emacs)
|
||||||
|
("leim" . emacs)
|
||||||
("mh-e" . mh-e)
|
("mh-e" . mh-e)
|
||||||
|
("obsolete" . emacs)
|
||||||
("semantic" . semantic)
|
("semantic" . semantic)
|
||||||
("analyze" . semantic)
|
("analyze" . semantic)
|
||||||
("bovine" . semantic)
|
("bovine" . semantic)
|
||||||
|
@ -162,6 +164,7 @@ would otherwise be.")
|
||||||
("org" . org)
|
("org" . org)
|
||||||
("srecode" . srecode)
|
("srecode" . srecode)
|
||||||
("term" . emacs)
|
("term" . emacs)
|
||||||
|
("use-package" . use-package)
|
||||||
("url" . url))
|
("url" . url))
|
||||||
"Alist of built-in package directories.
|
"Alist of built-in package directories.
|
||||||
Each element should have the form (DIR . PACKAGE), where DIR is a
|
Each element should have the form (DIR . PACKAGE), where DIR is a
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
;; Author: Mathias Dahl <mathias.rem0veth1s.dahl@gmail.com>
|
;; Author: Mathias Dahl <mathias.rem0veth1s.dahl@gmail.com>
|
||||||
;; Maintainer: Stefan Kangas <stefankangas@gmail.com>
|
;; Maintainer: Stefan Kangas <stefankangas@gmail.com>
|
||||||
;; Keywords: multimedia
|
;; Keywords: multimedia
|
||||||
|
;; Package: image-dired
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
;; Author: Mathias Dahl <mathias.rem0veth1s.dahl@gmail.com>
|
;; Author: Mathias Dahl <mathias.rem0veth1s.dahl@gmail.com>
|
||||||
;; Maintainer: Stefan Kangas <stefankangas@gmail.com>
|
;; Maintainer: Stefan Kangas <stefankangas@gmail.com>
|
||||||
;; Keywords: multimedia
|
;; Keywords: multimedia
|
||||||
|
;; Package: image-dired
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
;; Author: Mathias Dahl <mathias.rem0veth1s.dahl@gmail.com>
|
;; Author: Mathias Dahl <mathias.rem0veth1s.dahl@gmail.com>
|
||||||
;; Maintainer: Stefan Kangas <stefankangas@gmail.com>
|
;; Maintainer: Stefan Kangas <stefankangas@gmail.com>
|
||||||
;; Keywords: multimedia
|
;; Keywords: multimedia
|
||||||
|
;; Package: image-dired
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
;; Author: Mathias Dahl <mathias.rem0veth1s.dahl@gmail.com>
|
;; Author: Mathias Dahl <mathias.rem0veth1s.dahl@gmail.com>
|
||||||
;; Maintainer: Stefan Kangas <stefankangas@gmail.com>
|
;; Maintainer: Stefan Kangas <stefankangas@gmail.com>
|
||||||
|
;; Package: image-dired
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
;; Copyright (C) 2021-2023 Free Software Foundation, Inc.
|
;; Copyright (C) 2021-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
|
;; Maintainer: emacs-devel@gnu.org
|
||||||
|
;; Keywords: internal
|
||||||
|
;; Package: emacs
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
|
|
||||||
;; GNU Emacs is free software: you can redistribute it and/or modify
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
;; Copyright (C) 2022-2023 Free Software Foundation, Inc.
|
;; Copyright (C) 2022-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
;; Author: Bob Rogers <rogers@rgrjr.com>
|
;; Author: Bob Rogers <rogers@rgrjr.com>
|
||||||
|
;; Package: ietf-drums
|
||||||
;; Keywords: mail, util
|
;; Keywords: mail, util
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
|
|
|
@ -1,21 +1,22 @@
|
||||||
;;; eudc-capf.el --- EUDC - completion-at-point bindings -*- lexical-binding:t -*-
|
;;; eudc-capf.el --- EUDC - completion-at-point bindings -*- lexical-binding:t -*-
|
||||||
|
|
||||||
;; Copyright (C) 2022-2023 Free Software Foundation, Inc.
|
;; Copyright (C) 2022-2023 Free Software Foundation, Inc.
|
||||||
;;
|
|
||||||
;; Author: Alexander Adolf
|
;; Author: Alexander Adolf
|
||||||
;;
|
;; Package: eudc
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
;;
|
|
||||||
;; GNU Emacs is free software: you can redistribute it and/or modify
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
||||||
;; it under the terms of the GNU General Public License as published by
|
;; it under the terms of the GNU General Public License as published by
|
||||||
;; the Free Software Foundation, either version 3 of the License, or
|
;; the Free Software Foundation, either version 3 of the License, or
|
||||||
;; (at your option) any later version.
|
;; (at your option) any later version.
|
||||||
;;
|
|
||||||
;; GNU Emacs is distributed in the hope that it will be useful,
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
||||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
;; GNU General Public License for more details.
|
;; GNU General Public License for more details.
|
||||||
;;
|
|
||||||
;; You should have received a copy of the GNU General Public License
|
;; You should have received a copy of the GNU General Public License
|
||||||
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
|
@ -1,29 +1,32 @@
|
||||||
;;; eudcb-ecomplete.el --- EUDC - ecomplete backend -*- lexical-binding: t -*-
|
;;; eudcb-ecomplete.el --- EUDC - ecomplete backend -*- lexical-binding: t -*-
|
||||||
|
|
||||||
;; Copyright (C) 2022-2023 Free Software Foundation, Inc.
|
;; Copyright (C) 2022-2023 Free Software Foundation, Inc.
|
||||||
;;
|
|
||||||
;; Author: Alexander Adolf
|
;; Author: Alexander Adolf
|
||||||
;;
|
;; Package: eudc
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
;;
|
|
||||||
;; GNU Emacs is free software: you can redistribute it and/or modify
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
||||||
;; it under the terms of the GNU General Public License as published by
|
;; it under the terms of the GNU General Public License as published by
|
||||||
;; the Free Software Foundation, either version 3 of the License, or
|
;; the Free Software Foundation, either version 3 of the License, or
|
||||||
;; (at your option) any later version.
|
;; (at your option) any later version.
|
||||||
;;
|
|
||||||
;; GNU Emacs is distributed in the hope that it will be useful,
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
||||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
;; GNU General Public License for more details.
|
;; GNU General Public License for more details.
|
||||||
;;
|
|
||||||
;; You should have received a copy of the GNU General Public License
|
;; You should have received a copy of the GNU General Public License
|
||||||
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
;; This library provides an interface to the ecomplete package as
|
;; This library provides an interface to the ecomplete package as
|
||||||
;; an EUDC data source.
|
;; an EUDC data source.
|
||||||
|
|
||||||
;;; Usage:
|
;;; Usage:
|
||||||
|
|
||||||
;; No setup is required, since there is an entry for this backend
|
;; No setup is required, since there is an entry for this backend
|
||||||
;; in `eudc-server-hotlist' by default.
|
;; in `eudc-server-hotlist' by default.
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
;; Copyright (C) 2020-2023 Free Software Foundation, Inc.
|
;; Copyright (C) 2020-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
;; Author: Alexander Adolf
|
;; Author: Alexander Adolf
|
||||||
|
;; Package: eudc
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
|
|
||||||
|
@ -20,11 +21,13 @@
|
||||||
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
;; This library provides an interface to the macOS Contacts app as
|
;; This library provides an interface to the macOS Contacts app as
|
||||||
;; an EUDC data source. It uses AppleScript to interface with the
|
;; an EUDC data source. It uses AppleScript to interface with the
|
||||||
;; Contacts app on localhost, so no 3rd party tools are needed.
|
;; Contacts app on localhost, so no 3rd party tools are needed.
|
||||||
|
|
||||||
;;; Usage:
|
;;; Usage:
|
||||||
|
|
||||||
;; To load the library, first `require' it:
|
;; To load the library, first `require' it:
|
||||||
;;
|
;;
|
||||||
;; (require 'eudcb-macos-contacts)
|
;; (require 'eudcb-macos-contacts)
|
||||||
|
|
|
@ -1,29 +1,32 @@
|
||||||
;;; eudcb-mailabbrev.el --- EUDC - mailabbrev backend -*- lexical-binding: t -*-
|
;;; eudcb-mailabbrev.el --- EUDC - mailabbrev backend -*- lexical-binding: t -*-
|
||||||
|
|
||||||
;; Copyright (C) 2022-2023 Free Software Foundation, Inc.
|
;; Copyright (C) 2022-2023 Free Software Foundation, Inc.
|
||||||
;;
|
|
||||||
;; Author: Alexander Adolf
|
;; Author: Alexander Adolf
|
||||||
;;
|
;; Package: eudc
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
;;
|
|
||||||
;; GNU Emacs is free software: you can redistribute it and/or modify
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
||||||
;; it under the terms of the GNU General Public License as published by
|
;; it under the terms of the GNU General Public License as published by
|
||||||
;; the Free Software Foundation, either version 3 of the License, or
|
;; the Free Software Foundation, either version 3 of the License, or
|
||||||
;; (at your option) any later version.
|
;; (at your option) any later version.
|
||||||
;;
|
|
||||||
;; GNU Emacs is distributed in the hope that it will be useful,
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
||||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
;; GNU General Public License for more details.
|
;; GNU General Public License for more details.
|
||||||
;;
|
|
||||||
;; You should have received a copy of the GNU General Public License
|
;; You should have received a copy of the GNU General Public License
|
||||||
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
;; This library provides an interface to the mailabbrev package as
|
;; This library provides an interface to the mailabbrev package as
|
||||||
;; an EUDC data source.
|
;; an EUDC data source.
|
||||||
|
|
||||||
;;; Usage:
|
;;; Usage:
|
||||||
|
|
||||||
;; No setup is required, since there is an entry for this backend
|
;; No setup is required, since there is an entry for this backend
|
||||||
;; in `eudc-server-hotlist' by default.
|
;; in `eudc-server-hotlist' by default.
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
;; Copyright (C) 2023 Free Software Foundation, Inc.
|
;; Copyright (C) 2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
;; Maintainer : 付禹安 (Yuan Fu) <casouri@gmail.com>
|
;; Maintainer : 付禹安 (Yuan Fu) <casouri@gmail.com>
|
||||||
|
;; Package : emacs
|
||||||
;; Keywords : c c++ java javascript rust languages tree-sitter
|
;; Keywords : c c++ java javascript rust languages tree-sitter
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
|
|
Loading…
Add table
Reference in a new issue