diff options
author | Eli Zaretskii <eliz@gnu.org> | 2024-01-28 07:43:25 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2024-01-28 15:06:37 +0100 |
commit | 396b49871aa5432e2ff00230868013a22b180656 (patch) | |
tree | b271b3ecd1bb8b010750f21cc10717f0c9bfc4f6 /doc | |
parent | e11c9f9c6e843779c4b69097490dd78de522a79d (diff) | |
download | emacs-396b49871aa5432e2ff00230868013a22b180656.tar.gz emacs-396b49871aa5432e2ff00230868013a22b180656.tar.bz2 emacs-396b49871aa5432e2ff00230868013a22b180656.zip |
; Fix last change in package.texi
* doc/lispref/package.texi (Multi-file Packages): Fix wording and
markup. (Bug#65027)
(cherry picked from commit 6d76e3991241905b0841effc6f8cd42394d9aa64)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lispref/package.texi | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/lispref/package.texi b/doc/lispref/package.texi index ebe578932bf..f75023d4039 100644 --- a/doc/lispref/package.texi +++ b/doc/lispref/package.texi @@ -284,12 +284,14 @@ variable @code{load-file-name} (@pxref{Loading}). Here is an example: (expand-file-name file superfrobnicator-base)) @end smallexample - If your project contains files that you don't wish to distribute to +@cindex @file{.elpaignore} file + If your package contains files that you don't wish to distribute to users (e.g.@: regression tests), you can add them to an -@file{.elpaignore} file. In this file, each line lists a file or -wildcard matching files to ignore when producing your package's tar -file on ELPA. (ELPA will pass this file to @command{tar} with the -@code{-X} option.) +@file{.elpaignore} file. In this file, each line lists a file or a +wildcard matching files; those files should be ignored when producing +your package's tarball on ELPA (@pxref{Package Archives}). (ELPA +will pass this file to the @command{tar} command via the @option{-X} +command-line option, when it prepares the package for download.) @node Package Archives @section Creating and Maintaining Package Archives |