Document reserved keys
[emacs.git] / CONTRIBUTE
blobc324375bb07134a54b5fe525bb64ef05f1a8b056
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 Briefly, the following shell commands build and run Emacs from scratch:
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
15         git clone git://git.sv.gnu.org/emacs.git
16         cd emacs
17         ./autogen.sh
18         ./configure
19         make
20         src/emacs
22 For more details, see
23 http://www.emacswiki.org/emacs/GitQuickStartForEmacsDevs and
24 http://www.emacswiki.org/emacs/GitForEmacsDevs or see the file
25 admin/notes/git-workflow.
27 ** Getting involved with development
29 Discussion about Emacs development takes place on emacs-devel@gnu.org.
30 You can subscribe to the emacs-devel@gnu.org mailing list.
31 If you want to get only the important mails (for things like
32 feature freezes), choose to receive only the 'emacs-announce' topic
33 (although so far this feature has not been well or consistently used).
34 See https://lists.gnu.org/mailman/listinfo/emacs-devel for mailing list
35 instructions and archives.  You can develop and commit changes in your
36 own copy of the repository, and discuss proposed changes on the
37 mailing list.  Frequent contributors to Emacs can request write access
38 there.
40 Bug reports and fixes, feature requests and patches/implementations
41 should be sent to bug-gnu-emacs@gnu.org, the bug/feature list.  This
42 is coupled to the https://debbugs.gnu.org tracker.  It is best to use
43 the command 'M-x report-emacs-bug RET' to report issues to the tracker
44 (described below).  Be prepared to receive comments and requests for
45 changes in your patches, following your submission.
47 The Savannah info page https://savannah.gnu.org/mail/?group=emacs
48 describes how to subscribe to the mailing lists, or see the list
49 archives.
51 To email a patch you can use a shell command like 'git format-patch -1'
52 to create a file, and then attach the file to your email.  This nicely
53 packages the patch's commit message and changes.  To send just one
54 such patch without additional remarks, you can use a command like
55 'git send-email --to=bug-gnu-emacs@gnu.org 0001-DESCRIPTION.patch'.
57 ** Issue tracker (a.k.a. "bug tracker")
59 The Emacs issue tracker at https://debbugs.gnu.org lets you view bug
60 reports and search the database for bugs matching several criteria.
61 Messages posted to the bug-gnu-emacs@gnu.org mailing list, mentioned
62 above, are recorded by the tracker with the corresponding bugs/issues.
64 GNU ELPA has a 'debbugs' package that allows accessing the tracker
65 database from Emacs.
67 Bugs needs regular attention.  A large backlog of bugs is
68 disheartening to the developers, and a culture of ignoring bugs is
69 harmful to users, who expect software that works.  Bugs have to be
70 regularly looked at and acted upon.  Not all bugs are critical, but at
71 the least, each bug needs to be regularly re-reviewed to make sure it
72 is still reproducible.
74 The process of going through old or new bugs and acting on them is
75 called bug triage.  This process is described in the file
76 admin/notes/bug-triage.
78 ** Documenting your changes
80 Any change that matters to end-users should have an entry in etc/NEWS.
82 Doc-strings should be updated together with the code.
84 Think about whether your change requires updating the manuals.  If you
85 know it does not, mark the NEWS entry with "---".  If you know
86 that *all* the necessary documentation updates have been made as part
87 of your changes or those by others, mark the entry with "+++".
88 Otherwise do not mark it.
90 If your change requires updating the manuals to document new
91 functions/commands/variables/faces, then use the proper Texinfo
92 command to index them; for instance, use @vindex for variables and
93 @findex for functions/commands.  For the full list of predefine indices, see
94 https://www.gnu.org/software/texinfo/manual/texinfo/html_node/Predefined-Indices.html
95 or run the shell command 'info "(texinfo)Predefined Indices"'.
97 We prefer American English both in doc strings and in the manuals.
98 That includes both spelling (e.g., "behavior", not "behaviour") and
99 the convention of leaving 2 spaces between sentences.
101 For more specific tips on Emacs's doc style, see
102 https://www.gnu.org/software/emacs/manual/html_node/elisp/Documentation-Tips.html
103 Use 'checkdoc' to check for documentation errors before submitting a patch.
105 ** Testing your changes
107 Please test your changes before committing them or sending them to the
108 list.  If possible, add a new test along with any bug fix or new
109 functionality you commit (of course, some changes cannot be easily
110 tested).
112 Emacs uses ERT, Emacs Lisp Regression Testing, for testing.  See
113 https://www.gnu.org/software/emacs/manual/html_node/ert/
114 or run 'info "(ert)"' for more information on writing and running
115 tests.
117 If your test lasts longer than some few seconds, mark it in its
118 'ert-deftest' definition with ":tags '(:expensive-test)".
120 To run tests on the entire Emacs tree, run "make check" from the
121 top-level directory.  Most tests are in the directory "test/".  From
122 the "test/" directory, run "make <filename>" to run the tests for
123 <filename>.el(c).  See "test/README" for more information.
125 ** Commit messages
127 Ordinarily, a change you commit should contain a log entry in its
128 commit message and should not touch the repository's ChangeLog files.
129 Here is an example commit message (indented):
131         Deactivate shifted region
133         Do not silently extend a region that is not highlighted;
134         this can happen after a shift (Bug#19003).
135         * doc/emacs/mark.texi (Shift Selection): Document the change.
136         * lisp/window.el (handle-select-window):
137         * src/frame.c (Fhandle_switch_frame, Fselected_frame):
138         Deactivate the mark.
140 Occasionally, commit messages are collected and prepended to a
141 ChangeLog file, where they can be corrected.  It saves time to get
142 them right the first time, so here are guidelines for formatting them:
144 - Start with a single unindented summary line explaining the change;
145   do not end this line with a period.  If that line starts with a
146   semicolon and a space "; ", the commit message will be ignored when
147   generating the ChangeLog file.  Use this for minor commits that do
148   not need separate ChangeLog entries, such as changes in etc/NEWS.
150 - After the summary line, there should be an empty line, then
151   unindented ChangeLog entries.
153 - Limit lines in commit messages to 78 characters, unless they consist
154   of a single word of at most 140 characters; this is enforced by a
155   commit hook.  It's nicer to limit the summary line to 50 characters;
156   this isn't enforced.  If the change can't be summarized so briefly,
157   add a paragraph after the empty line and before the individual file
158   descriptions.
160 - If only a single file is changed, the summary line can be the normal
161   file first line (starting with the asterisk).  Then there is no
162   individual files section.
164 - If the commit has more than one author, the commit message should
165   contain separate lines to mention the other authors, like the
166   following:
168         Co-authored-by: Joe Schmoe <j.schmoe@example.org>
170 - If the commit is a tiny change that is exempt from copyright paperwork,
171   the commit message should contain a separate line like the following:
173         Copyright-paperwork-exempt: yes
175 - The commit message should contain "Bug#NNNNN" if it is related to
176   bug number NNNNN in the debbugs database.  This string is often
177   parenthesized, as in "(Bug#19003)".
179 - When citing URLs, prefer https: to http: when either will do.  In
180   particular, gnu.org and fsf.org URLs should start with "https:".
182 - Commit messages should contain only printable UTF-8 characters.
184 - Commit messages should not contain the "Signed-off-by:" lines that
185   are used in some other projects.
187 - Any lines of the commit message that start with "; " are omitted
188   from the generated ChangeLog.
190 - Explaining the rationale for a design choice is best done in comments
191   in the source code.  However, sometimes it is useful to describe just
192   the rationale for a change; that can be done in the commit message
193   between the summary line and the file entries.
195 - Emacs generally follows the GNU coding standards for ChangeLogs: see
196   https://www.gnu.org/prep/standards/html_node/Change-Logs.html
197   or run 'info "(standards)Change Logs"'.  One exception is that
198   commits still sometimes quote `like-this' (as the standards used to
199   recommend) rather than 'like-this' or ‘like this’ (as they do now),
200   as `...' is so widely used elsewhere in Emacs.
202 - Some commenting rules in the GNU coding standards also apply
203   to ChangeLog entries: they must be in English, and be complete
204   sentences starting with a capital and ending with a period (except
205   the summary line should not end in a period).  See
206   https://www.gnu.org/prep/standards/html_node/Comments.html
207   or run 'info "(standards)Comments"'.  American English is preferred
208   in Emacs; that includes spelling and leaving 2 blanks between
209   sentences.
211   They are preserved indefinitely, and have a reasonable chance of
212   being read in the future, so it's better that they have good
213   presentation.
215 - Use the present tense; describe "what the change does", not "what
216   the change did".
218 - Preferred form for several entries with the same content:
220         * lisp/menu-bar.el (clipboard-yank, clipboard-kill-ring-save)
221         (clipboard-kill-region):
222         * lisp/eshell/esh-io.el (eshell-virtual-targets)
223         (eshell-clipboard-append):
224         Replace option gui-select-enable-clipboard with
225         select-enable-clipboard; renamed October 2014.  (Bug#25145)
227   (Rather than anything involving "ditto" and suchlike.)
229 - There is no standard or recommended way to identify revisions in
230   ChangeLog entries.  Using Git SHA1 values limits the usability of
231   the references to Git, and will become much less useful if Emacs
232   switches to a different VCS.  So we recommend against that.
234   One way to identify revisions is by quoting their summary line.
235   Another is with an action stamp - an RFC3339 date followed by !
236   followed by the committer's email - for example,
237   "2014-01-16T05:43:35Z!esr@thyrsus.com".  Often, "my previous commit"
238   will suffice.
240 - There is no need to mention files such as NEWS and MAINTAINERS, or
241   to indicate regeneration of files such as 'lib/gnulib.mk', in the
242   ChangeLog entry.  "There is no need" means you don't have to, but
243   you can if you want to.
245 ** Generating ChangeLog entries
247 - You can use Emacs functions to write ChangeLog entries; see
248   https://www.gnu.org/software/emacs/manual/html_node/emacs/Change-Log-Commands.html
249   or run 'info "(emacs)Change Log Commands"'.
251 - If you use Emacs VC, one way to format ChangeLog entries is to create
252   a top-level ChangeLog file manually, and update it with 'C-x 4 a' as
253   usual.  Do not register the ChangeLog file under git; instead, use
254   'C-c C-a' to insert its contents into your *vc-log* buffer.
255   Or if 'log-edit-hook' includes 'log-edit-insert-changelog' (which it
256   does by default), they will be filled in for you automatically.
258 - Alternatively, you can use the vc-dwim command to maintain commit
259   messages.  When you create a source directory, run the shell command
260   'git-changelog-symlink-init' to create a symbolic link from
261   ChangeLog to .git/c/ChangeLog.  Edit this ChangeLog via its symlink
262   with Emacs commands like 'C-x 4 a', and commit the change using the
263   shell command 'vc-dwim --commit'.  Type 'vc-dwim --help' for more.
265 ** Committing changes by others
267 If committing changes written by someone else, commit in their name,
268 not yours.  You can use 'git commit --author="AUTHOR"' to specify a
269 change's author.
271 ** Branches
273 Future development normally takes place on the master branch.
274 Sometimes specialized features are developed on other branches before
275 possibly being merged to the master.  Release branches are named
276 "emacs-NN" where NN is the major version number, and are mainly
277 intended for more-conservative changes such as bug fixes.  Typically,
278 collective development is active on the master branch and possibly on
279 the current release branch.  Periodically, the current release branch
280 is merged into the master, using the gitmerge function described in
281 admin/notes/git-workflow.
283 If you are fixing a bug that exists in the current release, be sure to
284 commit it to the release branch; it will be merged to the master
285 branch later by the gitmerge function.
287 Documentation fixes (in doc strings, in manuals, and in comments)
288 should always go to the release branch, if the documentation to be
289 fixed exists and is relevant to the release-branch codebase.  Doc
290 fixes are always considered "safe" -- even when a release branch is in
291 feature freeze, it can still receive doc fixes.
293 When you know that the change will be difficult to merge to the
294 master (e.g., because the code on master has changed a lot), you can
295 apply the change to both master and branch yourself.  It could also
296 happen that a change is cherry-picked from master to the release
297 branch, and so doesn't need to be merged back.  In these cases,
298 say in the release branch commit message that there is no need to merge
299 the commit to master, by starting the commit message with "Backport:".
300 The gitmerge function excludes these commits from the merge to the master.
302 Some changes should not be merged to master at all, for whatever
303 reasons.  These should be marked by including something like "Do not
304 merge to master" or anything that matches gitmerge-skip-regexp (see
305 admin/gitmerge.el) in the commit message.
307 ** GNU ELPA
309 This repository does not contain the Emacs Lisp package archive
310 (elpa.gnu.org).  See admin/notes/elpa for how to access the GNU ELPA
311 repository.
313 ** Understanding Emacs internals
315 The best way to understand Emacs internals is to read the code.  Some
316 source files, such as xdisp.c, have extensive comments describing the
317 design and implementation.  The following resources may also help:
319 https://www.gnu.org/software/emacs/manual/html_node/elisp/Tips.html
320 https://www.gnu.org/software/emacs/manual/html_node/elisp/GNU-Emacs-Internals.html
322 or run 'info "(elisp)Tips"' or 'info "(elisp)GNU Emacs Internals"'.
324 The file etc/DEBUG describes how to debug Emacs bugs.
326 *** Non-ASCII characters in Emacs files
328 If you introduce non-ASCII characters into Emacs source files, use the
329 UTF-8 encoding unless it cannot do the job for some good reason.
330 Although it is generally a good idea to add 'coding:' cookies to
331 non-ASCII source files, cookies are not needed in UTF-8-encoded *.el
332 files intended for use only with Emacs version 24.5 and later.
334 *** Useful files in the admin/ directory
336 See all the files in admin/notes/* .  In particular, see
337 admin/notes/newfile, see admin/notes/repo.
339 The file admin/MAINTAINERS records the areas of interest of frequent
340 Emacs contributors.  If you are making changes in one of the files
341 mentioned there, it is a good idea to consult the person who expressed
342 an interest in that file, and/or get his/her feedback for the changes.
343 If you are a frequent contributor and have interest in maintaining
344 specific files, please record those interests in that file, so that
345 others could be aware of that.
347 *** git vs rename
349 Git does not explicitly represent a file renaming; it uses a percent
350 changed heuristic to deduce that a file was renamed.  So if you are
351 planning to make extensive changes to a file after renaming it (or
352 moving it to another directory), you should:
354 - Create a feature branch.
356 - Commit the rename without any changes.
358 - Make other changes.
360 - Merge the feature branch to the master branch, instead of squashing
361   the commits into one.  The commit message on this merge should
362   summarize the renames and all the changes.
366 This file is part of GNU Emacs.
368 GNU Emacs is free software: you can redistribute it and/or modify
369 it under the terms of the GNU General Public License as published by
370 the Free Software Foundation, either version 3 of the License, or
371 (at your option) any later version.
373 GNU Emacs is distributed in the hope that it will be useful,
374 but WITHOUT ANY WARRANTY; without even the implied warranty of
375 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
376 GNU General Public License for more details.
378 You should have received a copy of the GNU General Public License
379 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
381 Local variables:
382 mode: outline
383 paragraph-separate: "[  \f]*$"
384 coding: utf-8
385 end: