Fix the etags test suite
[emacs.git] / CONTRIBUTE
blob2d70c4916ca14fc0d8659519db00025bc2db4b66
1 * How developers contribute to GNU Emacs
3 Here is how software developers can contribute to Emacs.  (Non-developers: see
4 https://www.gnu.org/software/emacs/manual/html_node/emacs/Contributing.html
5 or run the shell command 'info "(emacs)Contributing"'.)
7 ** The Emacs repository
9 Emacs development uses Git on Savannah for its main repository.
10 To configure Git for Emacs development, you can run the following:
12         git config --global user.name 'Your Name'
13         git config --global user.email 'your.name@example.com'
14         git config --global transfer.fsckObjects true
16 The following shell commands then build and run Emacs from scratch:
18         git clone git://git.sv.gnu.org/emacs.git
19         cd emacs
20         ./autogen.sh
21         ./configure
22         make
23         src/emacs
25 For more details, see
26 https://www.emacswiki.org/emacs/GitQuickStartForEmacsDevs and
27 https://www.emacswiki.org/emacs/GitForEmacsDevs or see the file
28 admin/notes/git-workflow.
30 ** Getting involved with development
32 Discussion about Emacs development takes place on emacs-devel@gnu.org.
33 You can subscribe to the emacs-devel@gnu.org mailing list.
34 If you want to get only the important mails (for things like
35 feature freezes), choose to receive only the 'emacs-announce' topic
36 (although so far this feature has not been well or consistently used).
37 See https://lists.gnu.org/mailman/listinfo/emacs-devel for mailing list
38 instructions and archives.  You can develop and commit changes in your
39 own copy of the repository, and discuss proposed changes on the
40 mailing list.  Frequent contributors to Emacs can request write access
41 there.
43 Bug reports and fixes, feature requests and patches/implementations
44 should be sent to bug-gnu-emacs@gnu.org, the bug/feature list.  This
45 is coupled to the https://debbugs.gnu.org tracker.  It is best to use
46 the command 'M-x report-emacs-bug RET' to report issues to the tracker
47 (described below).  Be prepared to receive comments and requests for
48 changes in your patches, following your submission.
50 The Savannah info page https://savannah.gnu.org/mail/?group=emacs
51 describes how to subscribe to the mailing lists, or see the list
52 archives.
54 To email a patch you can use a shell command like 'git format-patch -1'
55 to create a file, and then attach the file to your email.  This nicely
56 packages the patch's commit message and changes, and makes sure the
57 format and whitespace are not munged in transit by the various mail
58 agents.  To send just one such patch without additional remarks, it is
59 also possible to use a command like
61   git send-email --to=bug-gnu-emacs@gnu.org 0001-DESCRIPTION.patch'.
63 However, we prefer the 'git format-patch' method with attachment, as
64 doing so delivers patches in the correct and easily-recognizable format
65 more reliably, and makes the job of applying the patches easier and less
66 error-prone.  It also allows sending patches whose author is someone
67 other than the email sender.
69 Once the cumulative amount of your submissions exceeds a dozen or so
70 lines of non-trivial changes, we will need you to assign to the FSF
71 the copyright for your contributions.  (To see how many lines were
72 non-trivially changed, count only added and modified lines in the
73 patched code.  Consider an added or changed line non-trivial if it
74 includes at least one identifier, string, or substantial comment.)
75 In most cases, to start the assignment process you should download
76 https://git.savannah.gnu.org/cgit/gnulib.git/plain/doc/Copyright/request-assign.future
77 and return the completed information to the address at the top.
78 (There are other assignment options, but they are much less commonly used.)
79 If you have questions about the assignment process, you can ask the
80 address listed on the form, and/or emacs-devel@gnu.org.
82 ** Issue tracker (a.k.a. "bug tracker")
84 The Emacs issue tracker at https://debbugs.gnu.org lets you view bug
85 reports and search the database for bugs matching several criteria.
86 Messages posted to the bug-gnu-emacs@gnu.org mailing list, mentioned
87 above, are recorded by the tracker with the corresponding
88 bugs/issues.  If a message to the bug tracker contains a patch, please
89 include the string "[PATCH]" in the subject of the message in order to
90 let the bug tracker tag the bug properly.
92 GNU ELPA has a 'debbugs' package that allows accessing the tracker
93 database from Emacs.
95 Bugs needs regular attention.  A large backlog of bugs is
96 disheartening to the developers, and a culture of ignoring bugs is
97 harmful to users, who expect software that works.  Bugs have to be
98 regularly looked at and acted upon.  Not all bugs are critical, but at
99 the least, each bug needs to be regularly re-reviewed to make sure it
100 is still reproducible.
102 The process of going through old or new bugs and acting on them is
103 called bug triage.  This process is described in the file
104 admin/notes/bug-triage.
106 ** Documenting your changes
108 Any change that matters to end-users should have an entry in etc/NEWS.
109 Try to start each NEWS entry with a sentence that summarizes the entry
110 and takes just one line -- this will allow to read NEWS in Outline
111 mode after hiding the body of each entry.
113 Doc-strings should be updated together with the code.
115 New defcustom's should always have a ':version' tag stating the first
116 Emacs version in which they will appear.  Likewise with defcustom's
117 whose value is changed -- update their ':version' tag.
119 Think about whether your change requires updating the manuals.  If you
120 know it does not, mark the NEWS entry with "---".  If you know
121 that *all* the necessary documentation updates have been made as part
122 of your changes or those by others, mark the entry with "+++".
123 Otherwise do not mark it.
125 If your change requires updating the manuals to document new
126 functions/commands/variables/faces, then use the proper Texinfo
127 command to index them; for instance, use @vindex for variables and
128 @findex for functions/commands.  For the full list of predefined indices, see
129 https://www.gnu.org/software/texinfo/manual/texinfo/html_node/Predefined-Indices.html
130 or run the shell command 'info "(texinfo)Predefined Indices"'.
132 We prefer American English both in doc strings and in the manuals.
133 That includes both spelling (e.g., "behavior", not "behaviour") and
134 the convention of leaving 2 spaces between sentences.
136 For more specific tips on Emacs's doc style, see
137 https://www.gnu.org/software/emacs/manual/html_node/elisp/Documentation-Tips.html
138 Use 'checkdoc' to check for documentation errors before submitting a patch.
140 ** Testing your changes
142 Please test your changes before committing them or sending them to the
143 list.  If possible, add a new test along with any bug fix or new
144 functionality you commit (of course, some changes cannot be easily
145 tested).
147 Emacs uses ERT, Emacs Lisp Regression Testing, for testing.  See
148 https://www.gnu.org/software/emacs/manual/html_node/ert/
149 or run 'info "(ert)"' for more information on writing and running
150 tests.
152 If your test lasts longer than some few seconds, mark it in its
153 'ert-deftest' definition with ":tags '(:expensive-test)".
155 To run tests on the entire Emacs tree, run "make check" from the
156 top-level directory.  Most tests are in the directory "test/".  From
157 the "test/" directory, run "make <filename>" to run the tests for
158 <filename>.el(c).  See "test/README" for more information.
160 ** Commit messages
162 Ordinarily, a change you commit should contain a log entry in its
163 commit message and should not touch the repository's ChangeLog files.
164 Here is an example commit message (indented):
166         Deactivate shifted region
168         Do not silently extend a region that is not highlighted;
169         this can happen after a shift (Bug#19003).
170         * doc/emacs/mark.texi (Shift Selection): Document the change.
171         * lisp/window.el (handle-select-window):
172         * src/frame.c (Fhandle_switch_frame, Fselected_frame):
173         Deactivate the mark.
175 Occasionally, commit messages are collected and prepended to a
176 ChangeLog file, where they can be corrected.  It saves time to get
177 them right the first time, so here are guidelines for formatting them:
179 - Start with a single unindented summary line explaining the change;
180   do not end this line with a period.  If that line starts with a
181   semicolon and a space "; ", the commit message will be ignored when
182   generating the ChangeLog file.  Use this for minor commits that do
183   not need separate ChangeLog entries, such as changes in etc/NEWS.
185 - After the summary line, there should be an empty line, then
186   unindented ChangeLog entries.
188 - Limit lines in commit messages to 78 characters, unless they consist
189   of a single word of at most 140 characters; this is enforced by a
190   commit hook.  It's nicer to limit the summary line to 50 characters;
191   this isn't enforced.  If the change can't be summarized so briefly,
192   add a paragraph after the empty line and before the individual file
193   descriptions.
195 - If only a single file is changed, the summary line can be the normal
196   file first line (starting with the asterisk).  Then there is no
197   individual files section.
199 - If the commit has more than one author, the commit message should
200   contain separate lines to mention the other authors, like the
201   following:
203         Co-authored-by: Joe Schmoe <j.schmoe@example.org>
205 - If the commit is a tiny change that is exempt from copyright paperwork,
206   the commit message should contain a separate line like the following:
208         Copyright-paperwork-exempt: yes
210 - The commit message should contain "Bug#NNNNN" if it is related to
211   bug number NNNNN in the debbugs database.  This string is often
212   parenthesized, as in "(Bug#19003)".
214 - When citing URLs, prefer https: to http: when either will do.  In
215   particular, gnu.org and fsf.org URLs should start with "https:".
217 - Commit messages should contain only printable UTF-8 characters.
219 - Commit messages should not contain the "Signed-off-by:" lines that
220   are used in some other projects.
222 - Any lines of the commit message that start with "; " are omitted
223   from the generated ChangeLog.
225 - Explaining the rationale for a design choice is best done in comments
226   in the source code.  However, sometimes it is useful to describe just
227   the rationale for a change; that can be done in the commit message
228   between the summary line and the file entries.
230 - Emacs generally follows the GNU coding standards for ChangeLogs: see
231   https://www.gnu.org/prep/standards/html_node/Change-Logs.html
232   or run 'info "(standards)Change Logs"'.  One exception is that
233   commits still sometimes quote `like-this' (as the standards used to
234   recommend) rather than 'like-this' or ‘like this’ (as they do now),
235   as `...' is so widely used elsewhere in Emacs.
237 - Some commenting rules in the GNU coding standards also apply
238   to ChangeLog entries: they must be in English, and be complete
239   sentences starting with a capital and ending with a period (except
240   the summary line should not end in a period).  See
241   https://www.gnu.org/prep/standards/html_node/Comments.html
242   or run 'info "(standards)Comments"'.  American English is preferred
243   in Emacs; that includes spelling and leaving 2 blanks between
244   sentences.
246   They are preserved indefinitely, and have a reasonable chance of
247   being read in the future, so it's better that they have good
248   presentation.
250 - Use the present tense; describe "what the change does", not "what
251   the change did".
253 - Preferred form for several entries with the same content:
255         * lisp/menu-bar.el (clipboard-yank, clipboard-kill-ring-save)
256         (clipboard-kill-region):
257         * lisp/eshell/esh-io.el (eshell-virtual-targets)
258         (eshell-clipboard-append):
259         Replace option gui-select-enable-clipboard with
260         select-enable-clipboard; renamed October 2014.  (Bug#25145)
262   (Rather than anything involving "ditto" and suchlike.)
264 - There is no standard or recommended way to identify revisions in
265   ChangeLog entries.  Using Git SHA1 values limits the usability of
266   the references to Git, and will become much less useful if Emacs
267   switches to a different VCS.  So we recommend against doing only that.
269   One way to identify revisions is by quoting their summary line.
270   Prefixing the summary with the commit date can give useful context
271   (use 'git show -s "--pretty=format:%cd \"%s\"" --date=short HASH' to
272   produce that).  Often, "my previous commit" will suffice.
274 - There is no need to mention files such as NEWS and MAINTAINERS, or
275   to indicate regeneration of files such as 'lib/gnulib.mk', in the
276   ChangeLog entry.  "There is no need" means you don't have to, but
277   you can if you want to.
279 ** Generating ChangeLog entries
281 - If you use Emacs VC, you can use 'C-c C-w' to generate formatted
282   blank ChangeLog entries from the diff being committed, then use
283   'M-q' to combine and fill them.  See 'info "(emacs) Log Buffer"'.
285 - Alternatively, you can use Emacs functions for ChangeLog files; see
286   https://www.gnu.org/software/emacs/manual/html_node/emacs/Change-Log-Commands.html
287   or run 'info "(emacs)Change Log Commands"'.
289   To format ChangeLog entries with Emacs VC, create a top-level
290   ChangeLog file manually, and update it with 'C-x 4 a' as usual.  Do
291   not register the ChangeLog file under git; instead, use 'C-c C-a' to
292   insert its contents into your *vc-log* buffer.  Or if
293   'log-edit-hook' includes 'log-edit-insert-changelog' (which it does
294   by default), they will be filled in for you automatically.
296 - Instead of Emacs VC, you can use the vc-dwim command to maintain commit
297   messages.  When you create a source directory, run the shell command
298   'git-changelog-symlink-init' to create a symbolic link from
299   ChangeLog to .git/c/ChangeLog.  Edit this ChangeLog via its symlink
300   with Emacs commands like 'C-x 4 a', and commit the change using the
301   shell command 'vc-dwim --commit'.  Type 'vc-dwim --help' for more.
303 ** Committing changes by others
305 If committing changes written by someone else, commit in their name,
306 not yours.  You can use 'git commit --author="AUTHOR"' to specify a
307 change's author.
309 ** Branches
311 Future development normally takes place on the master branch.
312 Sometimes specialized features are developed on other branches before
313 possibly being merged to the master.  Release branches are named
314 "emacs-NN" where NN is the major version number, and are mainly
315 intended for more-conservative changes such as bug fixes.  Typically,
316 collective development is active on the master branch and possibly on
317 the current release branch.  Periodically, the current release branch
318 is merged into the master, using the gitmerge function described in
319 admin/notes/git-workflow.
321 If you are fixing a bug that exists in the current release, you should
322 generally commit it to the release branch; it will be merged to the
323 master branch later by the gitmerge function.  However, when the
324 release branch is for Emacs version NN.2 and later, or when it is for
325 Emacs version NN.1 that is in the very last stages of its pretest,
326 that branch is considered to be in a feature freeze: only bug fixes
327 that are "safe" or are fixing major problems should go to the release
328 branch, the rest should be committed to the master branch.  This is so
329 to avoid destabilizing the next Emacs release.  If you are unsure
330 whether your bug fix is "safe" enough for the release branch, ask on
331 the emacs-devel mailing list.
333 Documentation fixes (in doc strings, in manuals, in NEWS, and in
334 comments) should always go to the release branch, if the documentation
335 to be fixed exists and is relevant to the release-branch codebase.
336 Doc fixes are always considered "safe" -- even when a release branch
337 is in feature freeze, it can still receive doc fixes.
339 When you know that the change will be difficult to merge to the
340 master (e.g., because the code on master has changed a lot), you can
341 apply the change to both master and branch yourself.  It could also
342 happen that a change is cherry-picked from master to the release
343 branch, and so doesn't need to be merged back.  In these cases,
344 say in the release branch commit message that there is no need to merge
345 the commit to master, by starting the commit message with "Backport:".
346 The gitmerge function excludes these commits from the merge to the master.
348 Some changes should not be merged to master at all, for whatever
349 reasons.  These should be marked by including something like "Do not
350 merge to master" or anything that matches gitmerge-skip-regexp (see
351 admin/gitmerge.el) in the commit message.
353 ** GNU ELPA
355 This repository does not contain the Emacs Lisp package archive
356 (elpa.gnu.org).  See admin/notes/elpa for how to access the GNU ELPA
357 repository.
359 ** Understanding Emacs internals
361 The best way to understand Emacs internals is to read the code.  Some
362 source files, such as xdisp.c, have extensive comments describing the
363 design and implementation.  The following resources may also help:
365 https://www.gnu.org/software/emacs/manual/html_node/elisp/Tips.html
366 https://www.gnu.org/software/emacs/manual/html_node/elisp/GNU-Emacs-Internals.html
368 or run 'info "(elisp)Tips"' or 'info "(elisp)GNU Emacs Internals"'.
370 The file etc/DEBUG describes how to debug Emacs bugs.
372 *** Non-ASCII characters in Emacs files
374 If you introduce non-ASCII characters into Emacs source files, use the
375 UTF-8 encoding unless it cannot do the job for some good reason.
376 Although it is generally a good idea to add 'coding:' cookies to
377 non-ASCII source files, cookies are not needed in UTF-8-encoded *.el
378 files intended for use only with Emacs version 24.5 and later.
380 *** Useful files in the admin/ directory
382 See all the files in admin/notes/* .  In particular, see
383 admin/notes/newfile, see admin/notes/repo.
385 The file admin/MAINTAINERS records the areas of interest of frequent
386 Emacs contributors.  If you are making changes in one of the files
387 mentioned there, it is a good idea to consult the person who expressed
388 an interest in that file, and/or get his/her feedback for the changes.
389 If you are a frequent contributor and have interest in maintaining
390 specific files, please record those interests in that file, so that
391 others could be aware of that.
393 *** git vs rename
395 Git does not explicitly represent a file renaming; it uses a percent
396 changed heuristic to deduce that a file was renamed.  So if you are
397 planning to make extensive changes to a file after renaming it (or
398 moving it to another directory), you should:
400 - Create a feature branch.
402 - Commit the rename without any changes.
404 - Make other changes.
406 - Merge the feature branch to the master branch, instead of squashing
407   the commits into one.  The commit message on this merge should
408   summarize the renames and all the changes.
412 This file is part of GNU Emacs.
414 GNU Emacs is free software: you can redistribute it and/or modify
415 it under the terms of the GNU General Public License as published by
416 the Free Software Foundation, either version 3 of the License, or
417 (at your option) any later version.
419 GNU Emacs is distributed in the hope that it will be useful,
420 but WITHOUT ANY WARRANTY; without even the implied warranty of
421 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
422 GNU General Public License for more details.
424 You should have received a copy of the GNU General Public License
425 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
427 Local variables:
428 mode: outline
429 paragraph-separate: "[  \f]*$"
430 coding: utf-8
431 end: