* lisp/textmodes/rst.el (electric-pair-pairs): Declare.
[bpt/emacs.git] / doc / emacs / trouble.texi
CommitLineData
6bf7aab6 1@c This is part of the Emacs manual.
ba318903 2@c Copyright (C) 1985-1987, 1993-1995, 1997, 2001-2014 Free Software
ab422c4d 3@c Foundation, Inc.
6bf7aab6
DL
4@c See file emacs.texi for copying conditions.
5@iftex
6@chapter Dealing with Common Problems
7
8 If you type an Emacs command you did not intend, the results are often
9mysterious. This chapter tells what you can do to cancel your mistake or
10recover from a mysterious situation. Emacs bugs and system crashes are
11also considered.
12@end iftex
13
0d6e9754
LT
14@ifnottex
15@raisesections
16@end ifnottex
17
d43f5a42 18@node Quitting
6bf7aab6
DL
19@section Quitting and Aborting
20@cindex quitting
21
22@table @kbd
23@item C-g
ab26d9a1
RS
24@itemx C-@key{BREAK} @r{(MS-DOS only)}
25Quit: cancel running or partially typed command.
6bf7aab6
DL
26@item C-]
27Abort innermost recursive editing level and cancel the command which
28invoked it (@code{abort-recursive-edit}).
29@item @key{ESC} @key{ESC} @key{ESC}
30Either quit or abort, whichever makes sense (@code{keyboard-escape-quit}).
31@item M-x top-level
32Abort all recursive editing levels that are currently executing.
b2a42eb7
CY
33@item C-/
34@itemx C-x u
35@itemx C-_
6bf7aab6
DL
36Cancel a previously made change in the buffer contents (@code{undo}).
37@end table
38
21c80203
RS
39 There are two ways of canceling a command before it has finished:
40@dfn{quitting} with @kbd{C-g}, and @dfn{aborting} with @kbd{C-]} or
41@kbd{M-x top-level}. Quitting cancels a partially typed command, or
42one which is still running. Aborting exits a recursive editing level
c61ab18c
CY
43and cancels the command that invoked the recursive edit
44(@pxref{Recursive Edit}).
6bf7aab6
DL
45
46@cindex quitting
47@kindex C-g
21c80203 48 Quitting with @kbd{C-g} is the way to get rid of a partially typed
3afc838f
CY
49command, or a numeric argument that you don't want. Furthermore, if
50you are in the middle of a command that is running, @kbd{C-g} stops
51the command in a relatively safe way. For example, if you quit out of
52a kill command that is taking a long time, either your text will
53@emph{all} still be in the buffer, or it will @emph{all} be in the
54kill ring, or maybe both. If the region is active, @kbd{C-g}
55deactivates the mark, unless Transient Mark mode is off
e1a3f5b1 56(@pxref{Disabled Transient Mark}). If you are in the middle of an
c61ab18c 57incremental search, @kbd{C-g} behaves specially; it may take two
e1a3f5b1
CY
58successive @kbd{C-g} characters to get out of a search.
59@xref{Incremental Search}, for details.
6bf7aab6
DL
60
61 On MS-DOS, the character @kbd{C-@key{BREAK}} serves as a quit character
62like @kbd{C-g}. The reason is that it is not feasible, on MS-DOS, to
63recognize @kbd{C-g} while a command is running, between interactions
64with the user. By contrast, it @emph{is} feasible to recognize
92d05762
EZ
65@kbd{C-@key{BREAK}} at all times.
66@iftex
67@xref{MS-DOS Keyboard,,,emacs-xtra, Specialized Emacs Features}.
68@end iftex
69@ifnottex
70@xref{MS-DOS Keyboard}.
71@end ifnottex
72
ab26d9a1 73@findex keyboard-quit
6bf7aab6
DL
74 @kbd{C-g} works by setting the variable @code{quit-flag} to @code{t}
75the instant @kbd{C-g} is typed; Emacs Lisp checks this variable
21c80203 76frequently, and quits if it is non-@code{nil}. @kbd{C-g} is only
6bf7aab6 77actually executed as a command if you type it while Emacs is waiting for
ab26d9a1 78input. In that case, the command it runs is @code{keyboard-quit}.
6bf7aab6 79
3b6f40c5
RS
80 On a text terminal, if you quit with @kbd{C-g} a second time before
81the first @kbd{C-g} is recognized, you activate the ``emergency
82escape'' feature and return to the shell. @xref{Emergency Escape}.
6bf7aab6
DL
83
84@cindex NFS and quitting
21c80203
RS
85 There are some situations where you cannot quit. When Emacs is
86waiting for the operating system to do something, quitting is
87impossible unless special pains are taken for the particular system
88call within Emacs where the waiting occurs. We have done this for the
89system calls that users are likely to want to quit from, but it's
a80859d4 90possible you will encounter a case not handled. In one very common
21c80203
RS
91case---waiting for file input or output using NFS---Emacs itself knows
92how to quit, but many NFS implementations simply do not allow user
93programs to stop waiting for NFS when the NFS server is hung.
6bf7aab6
DL
94
95@cindex aborting recursive edit
96@findex abort-recursive-edit
97@kindex C-]
98 Aborting with @kbd{C-]} (@code{abort-recursive-edit}) is used to get
99out of a recursive editing level and cancel the command which invoked
100it. Quitting with @kbd{C-g} does not do this, and could not do this,
101because it is used to cancel a partially typed command @emph{within} the
102recursive editing level. Both operations are useful. For example, if
103you are in a recursive edit and type @kbd{C-u 8} to enter a numeric
104argument, you can cancel that argument with @kbd{C-g} and remain in the
105recursive edit.
106
107@findex keyboard-escape-quit
108@kindex ESC ESC ESC
21c80203
RS
109 The sequence @kbd{@key{ESC} @key{ESC} @key{ESC}}
110(@code{keyboard-escape-quit}) can either quit or abort. (We defined
111it this way because @key{ESC} means ``get out'' in many PC programs.)
112It can cancel a prefix argument, clear a selected region, or get out
113of a Query Replace, like @kbd{C-g}. It can get out of the minibuffer
114or a recursive edit, like @kbd{C-]}. It can also get out of splitting
115the frame into multiple windows, as with @kbd{C-x 1}. One thing it
116cannot do, however, is stop a command that is running. That's because
117it executes as an ordinary command, and Emacs doesn't notice it until
118it is ready for the next command.
6bf7aab6
DL
119
120@findex top-level
2e606829
CY
121 The command @kbd{M-x top-level} is equivalent to ``enough''
122@kbd{C-]} commands to get you out of all the levels of recursive edits
123that you are in; it also exits the minibuffer if it is active.
124@kbd{C-]} gets you out one level at a time, but @kbd{M-x top-level}
125goes out all levels at once. Both @kbd{C-]} and @kbd{M-x top-level}
126are like all other commands, and unlike @kbd{C-g}, in that they take
127effect only when Emacs is ready for a command. @kbd{C-]} is an
128ordinary key and has its meaning only because of its binding in the
6bf7aab6
DL
129keymap. @xref{Recursive Edit}.
130
b2a42eb7 131 @kbd{C-/} (@code{undo}) is not strictly speaking a way of canceling
6bf7aab6 132a command, but you can think of it as canceling a command that already
b2a42eb7
CY
133finished executing. @xref{Undo}, for more information about the undo
134facility.
6bf7aab6 135
abb9615e 136@node Lossage
6bf7aab6
DL
137@section Dealing with Emacs Trouble
138
c61ab18c
CY
139 This section describes how to recognize and deal with situations in
140which Emacs does not work as you expect, such as keyboard code mixups,
141garbled displays, running out of memory, and crashes and hangs.
142
143 @xref{Bugs}, for what to do when you think you have found a bug in
144Emacs.
6bf7aab6
DL
145
146@menu
84c1f5fe 147* DEL Does Not Delete:: What to do if @key{DEL} doesn't delete.
82f6ab38
EZ
148* Stuck Recursive:: `[...]' in mode line around the parentheses.
149* Screen Garbled:: Garbage on the screen.
150* Text Garbled:: Garbage in the text.
82f6ab38 151* Memory Full:: How to cope when you run out of memory.
cf29dd84 152* Crashing:: What Emacs does when it crashes.
82f6ab38 153* After a Crash:: Recovering editing in an Emacs session that crashed.
c61ab18c 154* Emergency Escape:: What to do if Emacs stops responding.
6bf7aab6
DL
155@end menu
156
82f6ab38 157@node DEL Does Not Delete
6bf7aab6 158@subsection If @key{DEL} Fails to Delete
7be352a8
RS
159@cindex @key{DEL} vs @key{BACKSPACE}
160@cindex @key{BACKSPACE} vs @key{DEL}
161
09e80d9f 162 Every keyboard has a large key, usually labeled @key{Backspace},
b2a42eb7 163which is ordinarily used to erase the last character that you typed.
c61ab18c 164In Emacs, this key is supposed to be equivalent to @key{DEL}.
7be352a8 165
aa929821 166 When Emacs starts up on a graphical display, it determines
b2a42eb7 167automatically which key should be @key{DEL}. In some unusual cases,
c61ab18c
CY
168Emacs gets the wrong information from the system, and @key{Backspace}
169ends up deleting forwards instead of backwards.
7be352a8 170
b2a42eb7 171 Some keyboards also have a @key{Delete} key, which is ordinarily
522ddc9f
JB
172used to delete forwards. If this key deletes backward in Emacs, that
173too suggests Emacs got the wrong information---but in the opposite
174sense.
cdf648ca 175
0be641c0
CY
176 On a text terminal, if you find that @key{Backspace} prompts for a
177Help command, like @kbd{Control-h}, instead of deleting a character,
178it means that key is actually sending the @key{BS} character. Emacs
179ought to be treating @key{BS} as @key{DEL}, but it isn't.
7be352a8 180
c61ab18c 181@findex normal-erase-is-backspace-mode
7be352a8 182 In all of those cases, the immediate remedy is the same: use the
405d5e63
RS
183command @kbd{M-x normal-erase-is-backspace-mode}. This toggles
184between the two modes that Emacs supports for handling @key{DEL}, so
21c80203 185if Emacs starts in the wrong mode, this should switch to the right
0be641c0
CY
186mode. On a text terminal, if you want to ask for help when @key{BS}
187is treated as @key{DEL}, use @key{F1}; @kbd{C-?} may also work, if it
188sends character code 127.
7be352a8 189
c61ab18c
CY
190 To fix the problem in every Emacs session, put one of the following
191lines into your initialization file (@pxref{Init File}). For the
192first case above, where @key{Backspace} deletes forwards instead of
193backwards, use this line to make @key{Backspace} act as @key{DEL}:
7be352a8
RS
194
195@lisp
196(normal-erase-is-backspace-mode 0)
197@end lisp
198
199@noindent
b2a42eb7 200For the other two cases, use this line:
7be352a8
RS
201
202@lisp
203(normal-erase-is-backspace-mode 1)
204@end lisp
205
206@vindex normal-erase-is-backspace
207 Another way to fix the problem for every Emacs session is to
208customize the variable @code{normal-erase-is-backspace}: the value
209@code{t} specifies the mode where @key{BS} or @key{BACKSPACE} is
210@key{DEL}, and @code{nil} specifies the other mode. @xref{Easy
211Customization}.
6bf7aab6
DL
212
213@node Stuck Recursive
214@subsection Recursive Editing Levels
215
216 Recursive editing levels are important and useful features of Emacs, but
aa929821 217they can seem like malfunctions if you do not understand them.
6bf7aab6 218
c61ab18c
CY
219 If the mode line has square brackets @samp{[@dots{}]} around the
220parentheses that contain the names of the major and minor modes, you
221have entered a recursive editing level. If you did not do this on
222purpose, or if you don't understand what that means, you should just
223get out of the recursive editing level. To do so, type @kbd{M-x
224top-level}. @xref{Recursive Edit}.
6bf7aab6
DL
225
226@node Screen Garbled
227@subsection Garbage on the Screen
228
3b6f40c5
RS
229 If the text on a text terminal looks wrong, the first thing to do is
230see whether it is wrong in the buffer. Type @kbd{C-l} to redisplay
231the entire screen. If the screen appears correct after this, the
232problem was entirely in the previous screen update. (Otherwise, see
233the following section.)
6bf7aab6 234
21c80203
RS
235 Display updating problems often result from an incorrect terminfo
236entry for the terminal you are using. The file @file{etc/TERMS} in
237the Emacs distribution gives the fixes for known problems of this
238sort. @file{INSTALL} contains general advice for these problems in
c61ab18c
CY
239one of its sections. If you seem to be using the right terminfo
240entry, it is possible that there is a bug in the terminfo entry, or a
241bug in Emacs that appears for certain terminal types.
6bf7aab6
DL
242
243@node Text Garbled
244@subsection Garbage in the Text
245
21c80203
RS
246 If @kbd{C-l} shows that the text is wrong, first type @kbd{C-h l} to
247see what commands you typed to produce the observed results. Then try
248undoing the changes step by step using @kbd{C-x u}, until it gets back
249to a state you consider correct.
6bf7aab6
DL
250
251 If a large portion of text appears to be missing at the beginning or
252end of the buffer, check for the word @samp{Narrow} in the mode line.
253If it appears, the text you don't see is probably still present, but
254temporarily off-limits. To make it accessible again, type @kbd{C-x n
255w}. @xref{Narrowing}.
256
6bf7aab6
DL
257@node Memory Full
258@subsection Running out of Memory
259@cindex memory full
260@cindex out of memory
261
180ff2e5
RS
262 If you get the error message @samp{Virtual memory exceeded}, save
263your modified buffers with @kbd{C-x s}. This method of saving them
264has the smallest need for additional memory. Emacs keeps a reserve of
265memory which it makes available when this error happens; that should
266be enough to enable @kbd{C-x s} to complete its work. When the
267reserve has been used, @samp{!MEM FULL!} appears at the beginning of
268the mode line, indicating there is no more reserve.
269
270 Once you have saved your modified buffers, you can exit this Emacs
271session and start another, or you can use @kbd{M-x kill-some-buffers}
272to free space in the current Emacs job. If this frees up sufficient
273space, Emacs will refill its memory reserve, and @samp{!MEM FULL!}
274will disappear from the mode line. That means you can safely go on
275editing in the same Emacs session.
6bf7aab6
DL
276
277 Do not use @kbd{M-x buffer-menu} to save or kill buffers when you run
cce0aa5a 278out of memory, because the Buffer Menu needs a fair amount of memory
6bf7aab6
DL
279itself, and the reserve supply may not be enough.
280
cf29dd84
PE
281@node Crashing
282@subsection When Emacs Crashes
283
4c1f6a5b 284@cindex crash report
a33da68b
EZ
285@cindex backtrace
286@cindex @file{emacs_backtrace.txt} file, MS-Windows
4c1f6a5b
CY
287 Emacs is not supposed to crash, but if it does, it produces a
288@dfn{crash report} prior to exiting. The crash report is printed to
289the standard error stream. If Emacs was started from a graphical
a33da68b
EZ
290desktop on a GNU or Unix system, the standard error stream is commonly
291redirected to a file such as @file{~/.xsession-errors}, so you can
292look for the crash report there. On MS-Windows, the crash report is
293written to a file named @file{emacs_backtrace.txt} in the current
294directory of the Emacs process, in addition to the standard error
295stream.
4c1f6a5b
CY
296
297 The format of the crash report depends on the platform. On some
298platforms, such as those using the GNU C Library, the crash report
299includes a @dfn{backtrace} describing the execution state prior to
300crashing, which can be used to help debug the crash. Here is an
a33da68b 301example for a GNU system:
cf29dd84
PE
302
303@example
304Fatal error 11: Segmentation fault
305Backtrace:
306emacs[0x5094e4]
307emacs[0x4ed3e6]
308emacs[0x4ed504]
309/lib64/libpthread.so.0[0x375220efe0]
310/lib64/libpthread.so.0(read+0xe)[0x375220e08e]
311emacs[0x509af6]
312emacs[0x5acc26]
4c1f6a5b 313@dots{}
cf29dd84
PE
314@end example
315
316@noindent
4c1f6a5b
CY
317The number @samp{11} is the system signal number corresponding to the
318crash---in this case a segmentation fault. The hexadecimal numbers
319are program addresses, which can be associated with source code lines
320using a debugging tool. For example, the GDB command
321@samp{list *0x509af6} prints the source-code lines corresponding to
322the @samp{emacs[0x509af6]} entry. If your system has the
323@command{addr2line} utility, the following shell command outputs a
324backtrace with source-code line numbers:
58f3a196
PE
325
326@example
327sed -n 's/.*\[\(.*\)]$/\1/p' @var{backtrace} |
7f102272 328 addr2line -C -f -i -p -e @var{bindir}/@var{emacs-binary}
58f3a196
PE
329@end example
330
331@noindent
332Here, @var{backtrace} is the name of a text file containing a copy of
a33da68b
EZ
333the backtrace, @var{bindir} is the name of the directory that
334contains the Emacs executable, and @var{emacs-binary} is the name of
335the Emacs executable file, normally @file{emacs} on GNU and Unix
ee271528
PE
336systems and @file{emacs.exe} on MS-Windows and MS-DOS. Omit the
337@option{-p} option if your version of @command{addr2line} is too old
338to have it.
cf29dd84 339
4c1f6a5b 340@cindex core dump
a33da68b
EZ
341 Optionally, Emacs can generate a @dfn{core dump} when it crashes, on
342systems that support core files. A core dump is a file containing
343voluminous data about the state of the program prior to the crash,
d8ad4d3f 344usually examined by loading it into a debugger such as GDB@. On many
a33da68b
EZ
345platforms, core dumps are disabled by default, and you must explicitly
346enable them by running the shell command @samp{ulimit -c unlimited}
d8ad4d3f 347(e.g., in your shell startup script).
4c1f6a5b 348
6bf7aab6
DL
349@node After a Crash
350@subsection Recovery After a Crash
351
352 If Emacs or the computer crashes, you can recover the files you were
353editing at the time of the crash from their auto-save files. To do
354this, start Emacs again and type the command @kbd{M-x recover-session}.
355
356 This command initially displays a buffer which lists interrupted
357session files, each with its date. You must choose which session to
358recover from. Typically the one you want is the most recent one. Move
359point to the one you choose, and type @kbd{C-c C-c}.
360
21c80203
RS
361 Then @code{recover-session} considers each of the files that you
362were editing during that session; for each such file, it asks whether
363to recover that file. If you answer @kbd{y} for a file, it shows the
364dates of that file and its auto-save file, then asks once again
365whether to recover that file. For the second question, you must
366confirm with @kbd{yes}. If you do, Emacs visits the file but gets the
367text from the auto-save file.
6bf7aab6
DL
368
369 When @code{recover-session} is done, the files you've chosen to
370recover are present in Emacs buffers. You should then save them. Only
371this---saving them---updates the files themselves.
372
615cdecf
NF
373 As a last resort, if you had buffers with content which were not
374associated with any files, or if the autosave was not recent enough to
375have recorded important changes, you can use the
16540869
NF
376@file{etc/emacs-buffer.gdb} script with GDB (the GNU Debugger) to
377retrieve them from a core dump--provided that a core dump was saved,
378and that the Emacs executable was not stripped of its debugging
379symbols.
380
21c80203
RS
381 As soon as you get the core dump, rename it to another name such as
382@file{core.emacs}, so that another crash won't overwrite it.
383
5cf98ab4 384 To use this script, run @code{gdb} with the file name of your Emacs
1df7defd 385executable and the file name of the core dump, e.g., @samp{gdb
16540869
NF
386/usr/bin/emacs core.emacs}. At the @code{(gdb)} prompt, load the
387recovery script: @samp{source /usr/src/emacs/etc/emacs-buffer.gdb}.
5cf98ab4
RS
388Then type the command @code{ybuffer-list} to see which buffers are
389available. For each buffer, it lists a buffer number. To save a
390buffer, use @code{ysave-buffer}; you specify the buffer number, and
391the file name to write that buffer into. You should use a file name
392which does not already exist; if the file does exist, the script does
a5cecf92 393not make a backup of its old contents.
615cdecf 394
6bf7aab6
DL
395@node Emergency Escape
396@subsection Emergency Escape
397
0be641c0
CY
398 On text terminals, the @dfn{emergency escape} feature suspends Emacs
399immediately if you type @kbd{C-g} a second time before Emacs can
21c80203
RS
400actually respond to the first one by quitting. This is so you can
401always get out of GNU Emacs no matter how badly it might be hung.
402When things are working properly, Emacs recognizes and handles the
403first @kbd{C-g} so fast that the second one won't trigger emergency
404escape. However, if some problem prevents Emacs from handling the
405first @kbd{C-g} properly, then the second one will get you back to the
406shell.
6bf7aab6 407
21c80203
RS
408 When you resume Emacs after a suspension caused by emergency escape,
409it asks two questions before going back to what it had been doing:
6bf7aab6
DL
410
411@example
412Auto-save? (y or n)
413Abort (and dump core)? (y or n)
414@end example
415
416@noindent
417Answer each one with @kbd{y} or @kbd{n} followed by @key{RET}.
418
21c80203
RS
419 Saying @kbd{y} to @samp{Auto-save?} causes immediate auto-saving of
420all modified buffers in which auto-saving is enabled. Saying @kbd{n}
421skips this.
422
423 Saying @kbd{y} to @samp{Abort (and dump core)?} causes Emacs to
424crash, dumping core. This is to enable a wizard to figure out why
425Emacs was failing to quit in the first place. Execution does not
426continue after a core dump.
6bf7aab6 427
21c80203
RS
428 If you answer this question @kbd{n}, Emacs execution resumes. With
429luck, Emacs will ultimately do the requested quit. If not, each
430subsequent @kbd{C-g} invokes emergency escape again.
6bf7aab6
DL
431
432 If Emacs is not really hung, just slow, you may invoke the double
21c80203
RS
433@kbd{C-g} feature without really meaning to. Then just resume and
434answer @kbd{n} to both questions, and you will get back to the former
435state. The quit you requested will happen by and by.
6bf7aab6 436
58af1784
RS
437 Emergency escape is active only for text terminals. On graphical
438displays, you can use the mouse to kill Emacs or switch to another
439program.
6bf7aab6 440
21c80203
RS
441 On MS-DOS, you must type @kbd{C-@key{BREAK}} (twice) to cause
442emergency escape---but there are cases where it won't work, when
443system call hangs or when Emacs is stuck in a tight loop in C code.
6bf7aab6 444
abb9615e 445@node Bugs
6bf7aab6
DL
446@section Reporting Bugs
447
448@cindex bugs
63e1eaa1
GM
449 If you think you have found a bug in Emacs, please report it. We
450cannot promise to fix it, or always to agree that it is a bug, but we
451certainly want to hear about it. The same applies for new features
452you would like to see added. The following sections will help you to
453construct an effective bug report.
9e25ea70 454
6bf7aab6 455@menu
63e1eaa1 456* Known Problems:: How to read about known problems and bugs.
8838673e
GM
457* Criteria: Bug Criteria. Have you really found a bug?
458* Understanding Bug Reporting:: How to report a bug effectively.
459* Checklist:: Steps to follow for a good bug report.
460* Sending Patches:: How to send a patch for GNU Emacs.
6bf7aab6
DL
461@end menu
462
63e1eaa1
GM
463@node Known Problems
464@subsection Reading Existing Bug Reports and Known Problems
465
466 Before reporting a bug, if at all possible please check to see if it
467is already known about. Indeed, it may already have been fixed in a
468later release of Emacs, or in the development version. Here is a list
469of the main places you can read about known issues:
470
471@itemize
472@item
c61ab18c
CY
473The @file{etc/PROBLEMS} file; type @kbd{C-h C-p} to read it. This
474file contains a list of particularly well-known issues that have been
475encountered in compiling, installing and running Emacs. Often, there
476are suggestions for workarounds and solutions.
63e1eaa1
GM
477
478@item
479Some additional user-level problems can be found in @ref{Bugs and
480problems, , Bugs and problems, efaq, GNU Emacs FAQ}.
481
c61ab18c
CY
482@cindex bug tracker
483@item
484The GNU Bug Tracker at @url{http://debbugs.gnu.org}. Emacs bugs are
485filed in the tracker under the @samp{emacs} package. The tracker
486records information about the status of each bug, the initial bug
487report, and the follow-up messages by the bug reporter and Emacs
488developers. You can search for bugs by subject, severity, and other
489criteria.
490
491@cindex debbugs package
492Instead of browsing the bug tracker as a webpage, you can browse it
493from Emacs using the @code{debbugs} package, which can be downloaded
494via the Package Menu (@pxref{Packages}). This package provides the
495command @kbd{M-x debbugs-gnu} to list bugs, and @kbd{M-x
87288971
MA
496debbugs-gnu-search} to search for a specific bug. User tags, applied
497by the Emacs maintainers, are shown by @kbd{M-x debbugs-gnu-usertags}.
c61ab18c 498
63e1eaa1
GM
499@item
500The @samp{bug-gnu-emacs} mailing list (also available as the newsgroup
ae742cb5 501@samp{gnu.emacs.bug}). You can read the list archives at
c61ab18c
CY
502@url{http://lists.gnu.org/mailman/listinfo/bug-gnu-emacs}. This list
503works as a ``mirror'' of the Emacs bug reports and follow-up messages
504which are sent to the bug tracker. It also contains old bug reports
505from before the bug tracker was introduced (in early 2008).
63e1eaa1 506
c61ab18c
CY
507If you like, you can subscribe to the list. Be aware that its purpose
508is to provide the Emacs maintainers with information about bugs and
509feature requests, so reports may contain fairly large amounts of data;
510spectators should not complain about this.
63e1eaa1
GM
511
512@item
513The @samp{emacs-pretest-bug} mailing list. This list is no longer
514used, and is mainly of historical interest. At one time, it was used
515for bug reports in development (i.e., not yet released) versions of
516Emacs. You can read the archives for 2003 to mid 2007 at
c61ab18c
CY
517@url{http://lists.gnu.org/archive/html/emacs-pretest-bug/}. Nowadays,
518it is an alias for @samp{bug-gnu-emacs}.
63e1eaa1
GM
519
520@item
521The @samp{emacs-devel} mailing list. Sometimes people report bugs to
522this mailing list. This is not the main purpose of the list, however,
523and it is much better to send bug reports to the bug list. You should
524not feel obliged to read this list before reporting a bug.
525
526@end itemize
527
528
6bf7aab6
DL
529@node Bug Criteria
530@subsection When Is There a Bug
531
21c80203
RS
532 If Emacs accesses an invalid memory location (``segmentation
533fault''), or exits with an operating system error message that
534indicates a problem in the program (as opposed to something like
535``disk full''), then it is certainly a bug.
6bf7aab6 536
c61ab18c
CY
537 If the Emacs display does not correspond properly to the contents of
538the buffer, then it is a bug. But you should check that features like
539buffer narrowing (@pxref{Narrowing}), which can hide parts of the
540buffer or change how it is displayed, are not responsible.
6bf7aab6
DL
541
542 Taking forever to complete a command can be a bug, but you must make
c61ab18c
CY
543sure that it is really Emacs's fault. Some commands simply take a
544long time. Type @kbd{C-g} (@kbd{C-@key{BREAK}} on MS-DOS) and then
545@kbd{C-h l} to see whether the input Emacs received was what you
546intended to type; if the input was such that you @emph{know} it should
547have been processed quickly, report a bug. If you don't know whether
548the command should take a long time, find out by looking in the manual
549or by asking for assistance.
6bf7aab6
DL
550
551 If a command you are familiar with causes an Emacs error message in a
552case where its usual definition ought to be reasonable, it is probably a
553bug.
554
c61ab18c
CY
555 If a command does the wrong thing, that is a bug. But be sure you
556know for certain what it ought to have done. If you aren't familiar
557with the command, it might actually be working right. If in doubt,
558read the command's documentation (@pxref{Name Help}).
6bf7aab6 559
c61ab18c
CY
560 A command's intended definition may not be the best possible
561definition for editing with. This is a very important sort of
562problem, but it is also a matter of judgment. Also, it is easy to
ba3ce288
GM
563come to such a conclusion out of ignorance of some of the existing
564features. It is probably best not to complain about such a problem
565until you have checked the documentation in the usual ways, feel
566confident that you understand it, and know for certain that what you
21c80203
RS
567want is not available. Ask other Emacs users, too. If you are not
568sure what the command is supposed to do after a careful reading of the
569manual, check the index and glossary for any terms that may be
570unclear.
6bf7aab6
DL
571
572 If after careful rereading of the manual you still do not understand
573what the command should do, that indicates a bug in the manual, which
574you should report. The manual's job is to make everything clear to
575people who are not Emacs experts---including you. It is just as
576important to report documentation bugs as program bugs.
577
c61ab18c 578 If the built-in documentation for a function or variable disagrees
6bf7aab6
DL
579with the manual, one of them must be wrong; that is a bug.
580
581@node Understanding Bug Reporting
582@subsection Understanding Bug Reporting
583
584@findex emacs-version
c61ab18c
CY
585 When you decide that there is a bug, it is important to report it
586and to report it in a way which is useful. What is most useful is an
587exact description of what commands you type, starting with the shell
588command to run Emacs, until the problem happens.
6bf7aab6
DL
589
590 The most important principle in reporting a bug is to report
c61ab18c
CY
591@emph{facts}. Hypotheses and verbal descriptions are no substitute
592for the detailed raw data. Reporting the facts is straightforward,
593but many people strain to posit explanations and report them instead
594of the facts. If the explanations are based on guesses about how
595Emacs is implemented, they will be useless; meanwhile, lacking the
596facts, we will have no real information about the bug. If you want to
597actually @emph{debug} the problem, and report explanations that are
598more than guesses, that is useful---but please include the raw facts
599as well.
6bf7aab6
DL
600
601 For example, suppose that you type @kbd{C-x C-f /glorp/baz.ugh
21c80203 602@key{RET}}, visiting a file which (you know) happens to be rather
c61ab18c
CY
603large, and Emacs displays @samp{I feel pretty today}. The bug report
604would need to provide all that information. You should not assume
605that the problem is due to the size of the file and say, ``I visited a
606large file, and Emacs displayed @samp{I feel pretty today}.'' This is
16152b76 607what we mean by ``guessing explanations''. The problem might be due
c61ab18c
CY
608to the fact that there is a @samp{z} in the file name. If this is so,
609then when we got your report, we would try out the problem with some
16152b76 610``large file'', probably with no @samp{z} in its name, and not see any
c61ab18c 611problem. There is no way we could guess that we should try visiting a
6bf7aab6
DL
612file with a @samp{z} in its name.
613
c61ab18c
CY
614 You should not even say ``visit a file'' instead of @kbd{C-x C-f}.
615Similarly, rather than saying ``if I have three characters on the
16152b76 616line'', say ``after I type @kbd{@key{RET} A B C @key{RET} C-p}'', if
c61ab18c
CY
617that is the way you entered the text.
618
619 If possible, try quickly to reproduce the bug by invoking Emacs with
620@command{emacs -Q} (so that Emacs starts with no initial
621customizations; @pxref{Initial Options}), and repeating the steps that
622you took to trigger the bug. If you can reproduce the bug this way,
623that rules out bugs in your personal customizations. Then your bug
624report should begin by stating that you started Emacs with
625@command{emacs -Q}, followed by the exact sequence of steps for
626reproducing the bug. If possible, inform us of the exact contents of
627any file that is needed to reproduce the bug.
628
629 Some bugs are not reproducible from @command{emacs -Q}; some are not
630easily reproducible at all. In that case, you should report what you
631have---but, as before, please stick to the raw facts about what you
632did to trigger the bug the first time.
6bf7aab6 633
ad15bd74
GM
634 If you have multiple issues that you want to report, please make a
635separate bug report for each.
65faed73 636
6bf7aab6
DL
637@node Checklist
638@subsection Checklist for Bug Reports
639
640@cindex reporting bugs
63e1eaa1
GM
641
642 Before reporting a bug, first try to see if the problem has already
643been reported (@pxref{Known Problems}).
644
645If you are able to, try the latest release of Emacs to see if the
646problem has already been fixed. Even better is to try the latest
647development version. We recognize that this is not easy for some
648people, so do not feel that you absolutely must do this before making
649a report.
6bf7aab6 650
6bf7aab6 651@findex report-emacs-bug
63e1eaa1
GM
652 The best way to write a bug report for Emacs is to use the command
653@kbd{M-x report-emacs-bug}. This sets up a mail buffer
654(@pxref{Sending Mail}) and automatically inserts @emph{some} of the
655essential information. However, it cannot supply all the necessary
656information; you should still read and follow the guidelines below, so
657you can enter the other crucial information by hand before you send
658the message. You may feel that some of the information inserted by
659@kbd{M-x report-emacs-bug} is not relevant, but unless you are
660absolutely sure it is best to leave it, so that the developers can
661decide for themselves.
662
663When you have finished writing your report, type @kbd{C-c C-c} and it
2f3ac208
GM
664will be sent to the Emacs maintainers at
665@ifnothtml
666@email{bug-gnu-emacs@@gnu.org}.
667@end ifnothtml
668@ifhtml
669@url{http://lists.gnu.org/mailman/listinfo/bug-gnu-emacs, bug-gnu-emacs}.
670@end ifhtml
63e1eaa1
GM
671(If you want to suggest an improvement or new feature, use the same
672address.) If you cannot send mail from inside Emacs, you can copy the
91af9d2e 673text of your report to your normal mail client (if your system
c4af1efc 674supports it, you can type @kbd{C-c M-i} to have Emacs do this for you)
91af9d2e
GM
675and send it to that address. Or you can simply send an email to that
676address describing the problem.
63e1eaa1
GM
677
678Your report will be sent to the @samp{bug-gnu-emacs} mailing list, and
c61ab18c 679stored in the GNU Bug Tracker at @url{http://debbugs.gnu.org}. Please
63e1eaa1
GM
680include a valid reply email address, in case we need to ask you for
681more information about your report. Submissions are moderated, so
682there may be a delay before your report appears.
683
c61ab18c
CY
684You do not need to know how the Gnu Bug Tracker works in order to
685report a bug, but if you want to, you can read the tracker's online
686documentation to see the various features you can use.
63e1eaa1
GM
687
688All mail sent to the @samp{bug-gnu-emacs} mailing list is also
ffda048b 689gatewayed to the @samp{gnu.emacs.bug} newsgroup. The reverse is also
da3930f3
GM
690true, but we ask you not to post bug reports (or replies) via the
691newsgroup. It can make it much harder to contact you if we need to ask
692for more information, and it does not integrate well with the bug
693tracker.
63e1eaa1
GM
694
695If your data is more than 500,000 bytes, please don't include it
696directly in the bug report; instead, offer to send it on request, or
697make it available by ftp and say where.
6bf7aab6
DL
698
699 To enable maintainers to investigate a bug, your report
700should include all these things:
701
702@itemize @bullet
703@item
63e1eaa1
GM
704The version number of Emacs. Without this, we won't know whether there is any
705point in looking for the bug in the current version of GNU Emacs.
6bf7aab6 706
63e1eaa1
GM
707@kbd{M-x report-emacs-bug} includes this information automatically,
708but if you are not using that command for your report you can get the
709version number by typing @kbd{M-x emacs-version @key{RET}}. If that
710command does not work, you probably have something other than GNU
711Emacs, so you will have to report the bug somewhere else.
6bf7aab6
DL
712
713@item
714The type of machine you are using, and the operating system name and
63e1eaa1
GM
715version number (again, automatically included by @kbd{M-x
716report-emacs-bug}). @kbd{M-x emacs-version @key{RET}} provides this
1c64e6ed 717information too. Copy its output from the @file{*Messages*} buffer,
63e1eaa1 718so that you get it all and get it accurately.
6bf7aab6
DL
719
720@item
721The operands given to the @code{configure} command when Emacs was
63e1eaa1 722installed (automatically included by @kbd{M-x report-emacs-bug}).
6bf7aab6
DL
723
724@item
725A complete list of any modifications you have made to the Emacs source.
726(We may not have time to investigate the bug unless it happens in an
727unmodified Emacs. But if you've made modifications and you don't tell
728us, you are sending us on a wild goose chase.)
729
730Be precise about these changes. A description in English is not
731enough---send a context diff for them.
732
733Adding files of your own, or porting to another machine, is a
734modification of the source.
735
736@item
737Details of any other deviations from the standard procedure for installing
738GNU Emacs.
739
740@item
741The complete text of any files needed to reproduce the bug.
742
743 If you can tell us a way to cause the problem without visiting any files,
744please do so. This makes it much easier to debug. If you do need files,
745make sure you arrange for us to see their exact contents. For example, it
21c80203 746can matter whether there are spaces at the ends of lines, or a
6bf7aab6
DL
747newline after the last line in the buffer (nothing ought to care whether
748the last line is terminated, but try telling the bugs that).
749
750@item
c61ab18c
CY
751The precise commands we need to type to reproduce the bug. If at all
752possible, give a full recipe for an Emacs started with the @samp{-Q}
753option (@pxref{Initial Options}). This bypasses your personal
754customizations.
6bf7aab6
DL
755
756@findex open-dribble-file
757@cindex dribble file
34a41968 758@cindex logging keystrokes
63e1eaa1 759One way to record the input to Emacs precisely is to write a dribble
fb23ecc2
LMI
760file. To start the file, use the @kbd{M-x open-dribble-file
761@key{RET}} command. From then on, Emacs copies all your input to the
50ea0f87
GM
762specified dribble file until the Emacs process is killed. Be aware
763that sensitive information (such as passwords) may end up recorded in
764the dribble file.
6bf7aab6
DL
765
766@item
767@findex open-termscript
768@cindex termscript file
60a96371 769@cindex @env{TERM} environment variable
6bf7aab6 770For possible display bugs, the terminal type (the value of environment
60a96371 771variable @env{TERM}), the complete termcap entry for the terminal from
6bf7aab6
DL
772@file{/etc/termcap} (since that file is not identical on all machines),
773and the output that Emacs actually sent to the terminal.
774
775The way to collect the terminal output is to execute the Lisp expression
776
777@example
778(open-termscript "~/termscript")
779@end example
780
781@noindent
1c64e6ed 782using @kbd{M-:} or from the @file{*scratch*} buffer just after
6bf7aab6
DL
783starting Emacs. From then on, Emacs copies all terminal output to the
784specified termscript file as well, until the Emacs process is killed.
785If the problem happens when Emacs starts up, put this expression into
c61ab18c
CY
786your Emacs initialization file so that the termscript file will be
787open when Emacs displays the screen for the first time.
6bf7aab6
DL
788
789Be warned: it is often difficult, and sometimes impossible, to fix a
790terminal-dependent bug without access to a terminal of the type that
21c80203 791stimulates the bug.
6bf7aab6 792
d527b615 793@item
76dd3692 794If non-@acronym{ASCII} text or internationalization is relevant, the locale that
e6830948 795was current when you started Emacs. On GNU/Linux and Unix systems, or
892c6176 796if you use a Posix-style shell such as Bash, you can use this shell
e6830948 797command to view the relevant values:
d527b615 798
520e10f5 799@smallexample
d881eade 800echo LC_ALL=$LC_ALL LC_COLLATE=$LC_COLLATE LC_CTYPE=$LC_CTYPE \
b72d30a7 801 LC_MESSAGES=$LC_MESSAGES LC_TIME=$LC_TIME LANG=$LANG
520e10f5 802@end smallexample
d527b615 803
2cd8b7f6
EZ
804Alternatively, use the @command{locale} command, if your system has it,
805to display your locale settings.
806
807You can use the @kbd{M-!} command to execute these commands from
1c64e6ed 808Emacs, and then copy the output from the @file{*Messages*} buffer into
c1cb46c7 809the bug report. Alternatively, @kbd{M-x getenv @key{RET} LC_ALL
1ba2ce68 810@key{RET}} will display the value of @code{LC_ALL} in the echo area, and
1c64e6ed 811you can copy its output from the @file{*Messages*} buffer.
d527b615 812
6bf7aab6
DL
813@item
814A description of what behavior you observe that you believe is
16152b76 815incorrect. For example, ``The Emacs process gets a fatal signal'', or,
6bf7aab6
DL
816``The resulting text is as follows, which I think is wrong.''
817
818Of course, if the bug is that Emacs gets a fatal signal, then one can't
819miss it. But if the bug is incorrect text, the maintainer might fail to
820notice what is wrong. Why leave it to chance?
821
822Even if the problem you experience is a fatal signal, you should still
823say so explicitly. Suppose something strange is going on, such as, your
824copy of the source is out of sync, or you have encountered a bug in the
825C library on your system. (This has happened!) Your copy might crash
826and the copy here might not. If you @emph{said} to expect a crash, then
827when Emacs here fails to crash, we would know that the bug was not
828happening. If you don't say to expect a crash, then we would not know
829whether the bug was happening---we would not be able to draw any
830conclusion from our observations.
831
ab26d9a1
RS
832@item
833If the bug is that the Emacs Manual or the Emacs Lisp Reference Manual
834fails to describe the actual behavior of Emacs, or that the text is
835confusing, copy in the text from the online manual which you think is
836at fault. If the section is small, just the section name is enough.
837
6bf7aab6
DL
838@item
839If the manifestation of the bug is an Emacs error message, it is
840important to report the precise text of the error message, and a
841backtrace showing how the Lisp program in Emacs arrived at the error.
842
843To get the error message text accurately, copy it from the
1c64e6ed 844@file{*Messages*} buffer into the bug report. Copy all of it, not just
6bf7aab6
DL
845part.
846
50556a88 847@findex toggle-debug-on-error
68b34f99 848@pindex Edebug
50556a88
RS
849To make a backtrace for the error, use @kbd{M-x toggle-debug-on-error}
850before the error happens (that is to say, you must give that command
21c80203 851and then make the bug happen). This causes the error to start the Lisp
50556a88 852debugger, which shows you a backtrace. Copy the text of the
1139b0be
XF
853debugger's backtrace into the bug report. @xref{Edebug,, Edebug,
854elisp, the Emacs Lisp Reference Manual}, for information on debugging
855Emacs Lisp programs with the Edebug package.
6bf7aab6
DL
856
857This use of the debugger is possible only if you know how to make the
858bug happen again. If you can't make it happen again, at least copy
859the whole error message.
860
88ab4340
EZ
861@vindex debug-on-quit
862If Emacs appears to be stuck in an infinite loop or in a very long
863operation, typing @kbd{C-g} with the variable @code{debug-on-quit}
864non-@code{nil} will start the Lisp debugger and show a backtrace.
865This backtrace is useful for debugging such long loops, so if you can
866produce it, copy it into the bug report.
867
649f602c
GM
868@vindex debug-on-event
869If you cannot get Emacs to respond to @kbd{C-g} (e.g., because
870@code{inhibit-quit} is set), then you can try sending the signal
871specified by @code{debug-on-event} (default SIGUSR2) from outside
872Emacs to cause it to enter the debugger.
873
6bf7aab6
DL
874@item
875Check whether any programs you have loaded into the Lisp world,
c61ab18c
CY
876including your initialization file, set any variables that may affect
877the functioning of Emacs. Also, see whether the problem happens in a
878freshly started Emacs without loading your initialization file (start
879Emacs with the @code{-Q} switch to prevent loading the init files).
880If the problem does @emph{not} occur then, you must report the precise
881contents of any programs that you must load into the Lisp world in
882order to cause the problem to occur.
6bf7aab6
DL
883
884@item
885If the problem does depend on an init file or other Lisp programs that
886are not part of the standard Emacs system, then you should make sure it
887is not a bug in those programs by complaining to their maintainers
888first. After they verify that they are using Emacs in a way that is
889supposed to work, they should report the bug.
890
891@item
892If you wish to mention something in the GNU Emacs source, show the line
893of code with a few lines of context. Don't just give a line number.
894
895The line numbers in the development sources don't match those in your
896sources. It would take extra work for the maintainers to determine what
897code is in your version at a given line number, and we could not be
898certain.
899
900@item
901Additional information from a C debugger such as GDB might enable
902someone to find a problem on a machine which he does not have available.
903If you don't know how to use GDB, please read the GDB manual---it is not
904very long, and using GDB is easy. You can find the GDB distribution,
905including the GDB manual in online form, in most of the same places you
906can find the Emacs distribution. To run Emacs under GDB, you should
907switch to the @file{src} subdirectory in which Emacs was compiled, then
908do @samp{gdb emacs}. It is important for the directory @file{src} to be
909current so that GDB will read the @file{.gdbinit} file in this
910directory.
911
912However, you need to think when you collect the additional information
913if you want it to show what causes the bug.
914
915@cindex backtrace for bug reports
916For example, many people send just a backtrace, but that is not very
917useful by itself. A simple backtrace with arguments often conveys
918little about what is happening inside GNU Emacs, because most of the
919arguments listed in the backtrace are pointers to Lisp objects. The
920numeric values of these pointers have no significance whatever; all that
921matters is the contents of the objects they point to (and most of the
922contents are themselves pointers).
923
924@findex debug_print
925To provide useful information, you need to show the values of Lisp
926objects in Lisp notation. Do this for each variable which is a Lisp
927object, in several stack frames near the bottom of the stack. Look at
928the source to see which variables are Lisp objects, because the debugger
929thinks of them as integers.
930
931To show a variable's value in Lisp syntax, first print its value, then
932use the user-defined GDB command @code{pr} to print the Lisp object in
933Lisp syntax. (If you must use another debugger, call the function
934@code{debug_print} with the object as an argument.) The @code{pr}
935command is defined by the file @file{.gdbinit}, and it works only if you
936are debugging a running process (not with a core dump).
937
938To make Lisp errors stop Emacs and return to GDB, put a breakpoint at
939@code{Fsignal}.
940
8389e1e2 941For a short listing of Lisp functions running, type the GDB
177c0ea7 942command @code{xbacktrace}.
8389e1e2 943
6bf7aab6
DL
944The file @file{.gdbinit} defines several other commands that are useful
945for examining the data types and contents of Lisp objects. Their names
946begin with @samp{x}. These commands work at a lower level than
947@code{pr}, and are less convenient, but they may work even when
948@code{pr} does not, such as when debugging a core dump or when Emacs has
949had a fatal signal.
950
878c3c90
EZ
951@cindex debugging Emacs, tricks and techniques
952More detailed advice and other useful techniques for debugging Emacs
953are available in the file @file{etc/DEBUG} in the Emacs distribution.
954That file also includes instructions for investigating problems
955whereby Emacs stops responding (many people assume that Emacs is
16152b76 956``hung'', whereas in fact it might be in an infinite loop).
878c3c90 957
ac41be63
RS
958To find the file @file{etc/DEBUG} in your Emacs installation, use the
959directory name stored in the variable @code{data-directory}.
6bf7aab6
DL
960@end itemize
961
962Here are some things that are not necessary in a bug report:
963
964@itemize @bullet
965@item
966A description of the envelope of the bug---this is not necessary for a
967reproducible bug.
968
969Often people who encounter a bug spend a lot of time investigating
970which changes to the input file will make the bug go away and which
971changes will not affect it.
972
973This is often time-consuming and not very useful, because the way we
ac41be63
RS
974will find the bug is by running a single example under the debugger
975with breakpoints, not by pure deduction from a series of examples.
976You might as well save time by not searching for additional examples.
977It is better to send the bug report right away, go back to editing,
978and find another bug to report.
6bf7aab6
DL
979
980Of course, if you can find a simpler example to report @emph{instead} of
981the original one, that is a convenience. Errors in the output will be
982easier to spot, running under the debugger will take less time, etc.
983
984However, simplification is not vital; if you can't do this or don't have
985time to try, please report the bug with your original test case.
986
c6fcb73d
RS
987@item
988A core dump file.
989
990Debugging the core dump might be useful, but it can only be done on
991your machine, with your Emacs executable. Therefore, sending the core
992dump file to the Emacs maintainers won't be useful. Above all, don't
993include the core file in an email bug report! Such a large message
994can be extremely inconvenient.
995
6bf7aab6
DL
996@item
997A system-call trace of Emacs execution.
998
999System-call traces are very useful for certain special kinds of
1000debugging, but in most cases they give little useful information. It is
1001therefore strange that many people seem to think that @emph{the} way to
1002report information about a crash is to send a system-call trace. Perhaps
1003this is a habit formed from experience debugging programs that don't
1004have source code or debugging symbols.
1005
1006In most programs, a backtrace is normally far, far more informative than
1007a system-call trace. Even in Emacs, a simple backtrace is generally
1008more informative, though to give full information you should supplement
1009the backtrace by displaying variable values and printing them as Lisp
1010objects with @code{pr} (see above).
1011
1012@item
1013A patch for the bug.
1014
1015A patch for the bug is useful if it is a good one. But don't omit the
1016other information that a bug report needs, such as the test case, on the
1017assumption that a patch is sufficient. We might see problems with your
1018patch and decide to fix the problem another way, or we might not
1019understand it at all. And if we can't understand what bug you are
1020trying to fix, or why your patch should be an improvement, we mustn't
1021install it.
1022
62fe831c 1023@ifnottex
6bf7aab6
DL
1024@xref{Sending Patches}, for guidelines on how to make it easy for us to
1025understand and install your patches.
62fe831c 1026@end ifnottex
6bf7aab6
DL
1027
1028@item
1029A guess about what the bug is or what it depends on.
1030
1031Such guesses are usually wrong. Even experts can't guess right about
1032such things without first using the debugger to find the facts.
1033@end itemize
1034
1035@node Sending Patches
1036@subsection Sending Patches for GNU Emacs
1037
1038@cindex sending patches for GNU Emacs
1039@cindex patches, sending
1040 If you would like to write bug fixes or improvements for GNU Emacs,
1041that is very helpful. When you send your changes, please follow these
1042guidelines to make it easy for the maintainers to use them. If you
1043don't follow these guidelines, your information might still be useful,
1044but using it will take extra work. Maintaining GNU Emacs is a lot of
1045work in the best of circumstances, and we can't keep up unless you do
1046your best to help.
1047
1048@itemize @bullet
1049@item
1050Send an explanation with your changes of what problem they fix or what
63e1eaa1
GM
1051improvement they bring about. For a fix for an existing bug, it is
1052best to reply to the relevant discussion on the @samp{bug-gnu-emacs}
c61ab18c
CY
1053list, or the bug entry in the GNU Bug Tracker at
1054@url{http://debbugs.gnu.org}. Explain why your change fixes the bug.
6bf7aab6
DL
1055
1056@item
1057Always include a proper bug report for the problem you think you have
1058fixed. We need to convince ourselves that the change is right before
1059installing it. Even if it is correct, we might have trouble
1060understanding it if we don't have a way to reproduce the problem.
1061
1062@item
1063Include all the comments that are appropriate to help people reading the
1064source in the future understand why this change was needed.
1065
1066@item
1067Don't mix together changes made for different reasons.
1068Send them @emph{individually}.
1069
1070If you make two changes for separate reasons, then we might not want to
1071install them both. We might want to install just one. If you send them
1072all jumbled together in a single set of diffs, we have to do extra work
1073to disentangle them---to figure out which parts of the change serve
1074which purpose. If we don't have time for this, we might have to ignore
1075your changes entirely.
1076
1077If you send each change as soon as you have written it, with its own
1078explanation, then two changes never get tangled up, and we can consider
1079each one properly without any extra work to disentangle them.
1080
1081@item
1082Send each change as soon as that change is finished. Sometimes people
1083think they are helping us by accumulating many changes to send them all
1084together. As explained above, this is absolutely the worst thing you
1085could do.
1086
1087Since you should send each change separately, you might as well send it
1088right away. That gives us the option of installing it immediately if it
1089is important.
1090
1091@item
1092Use @samp{diff -c} to make your diffs. Diffs without context are hard
1093to install reliably. More than that, they are hard to study; we must
1094always study a patch to decide whether we want to install it. Unidiff
1095format is better than contextless diffs, but not as easy to read as
1096@samp{-c} format.
1097
1098If you have GNU diff, use @samp{diff -c -F'^[_a-zA-Z0-9$]+ *('} when
1099making diffs of C code. This shows the name of the function that each
1100change occurs in.
1101
1102@item
1103Avoid any ambiguity as to which is the old version and which is the new.
1104Please make the old version the first argument to diff, and the new
1105version the second argument. And please give one version or the other a
1106name that indicates whether it is the old version or your new changed
1107one.
1108
1109@item
1110Write the change log entries for your changes. This is both to save us
1111the extra work of writing them, and to help explain your changes so we
1112can understand them.
1113
1114The purpose of the change log is to show people where to find what was
1115changed. So you need to be specific about what functions you changed;
1116in large functions, it's often helpful to indicate where within the
1117function the change was.
1118
1119On the other hand, once you have shown people where to find the change,
1120you need not explain its purpose in the change log. Thus, if you add a
1121new function, all you need to say about it is that it is new. If you
1122feel that the purpose needs explaining, it probably does---but put the
1123explanation in comments in the code. It will be more useful there.
1124
21c80203
RS
1125Please read the @file{ChangeLog} files in the @file{src} and
1126@file{lisp} directories to see what sorts of information to put in,
1127and to learn the style that we use. @xref{Change Log}.
6bf7aab6
DL
1128
1129@item
1130When you write the fix, keep in mind that we can't install a change that
1131would break other systems. Please think about what effect your change
1132will have if compiled on another type of system.
1133
1134Sometimes people send fixes that @emph{might} be an improvement in
1135general---but it is hard to be sure of this. It's hard to install
1136such changes because we have to study them very carefully. Of course,
1137a good explanation of the reasoning by which you concluded the change
1138was correct can help convince us.
1139
1140The safest changes are changes to the configuration files for a
1141particular machine. These are safe because they can't create new bugs
1142on other machines.
1143
1144Please help us keep up with the workload by designing the patch in a
1145form that is clearly safe to install.
1146@end itemize
1147
412a0972 1148@c FIXME: Include the node above?
abb9615e 1149@node Contributing
6bf7aab6 1150@section Contributing to Emacs Development
16207c0a 1151@cindex contributing to Emacs
6bf7aab6 1152
2f3ac208
GM
1153If you would like to work on improving Emacs, please contact the maintainers at
1154@ifnothtml
1155@email{emacs-devel@@gnu.org}.
1156@end ifnothtml
1157@ifhtml
1158@url{http://lists.gnu.org/mailman/listinfo/emacs-devel, the
1159emacs-devel mailing list}.
1160@end ifhtml
1161You can ask for suggested projects or suggest your own ideas.
6bf7aab6
DL
1162
1163If you have already written an improvement, please tell us about it. If
1164you have not yet started work, it is useful to contact
2f3ac208
GM
1165@ifnothtml
1166@email{emacs-devel@@gnu.org}
1167@end ifnothtml
1168@ifhtml
1169@url{http://lists.gnu.org/mailman/listinfo/emacs-devel, emacs-devel}
1170@end ifhtml
1171before you start; it might be possible to suggest ways to make your
1172extension fit in better with the rest of Emacs.
6bf7aab6 1173
4f3bc373 1174The development version of Emacs can be downloaded from the
7e17c3a2 1175repository where it is actively maintained by a group of developers.
21c80203
RS
1176See the Emacs project page
1177@url{http://savannah.gnu.org/projects/emacs/} for details.
b656e0f4 1178
6cdb34f3
GM
1179For more information on how to contribute, see the
1180@ifset WWW_GNU_ORG
1181@ifhtml
1182@url{http://gnu.org/software/emacs/CONTRIBUTE, etc/CONTRIBUTE}
1183@end ifhtml
1184@ifnothtml
1185@file{etc/CONTRIBUTE}
1186@end ifnothtml
1187@end ifset
1188@ifclear WWW_GNU_ORG
1189@file{etc/CONTRIBUTE}
1190@end ifclear
16207c0a
GM
1191file in the Emacs distribution.
1192
abb9615e 1193@node Service
6bf7aab6
DL
1194@section How To Get Help with GNU Emacs
1195
1196If you need help installing, using or changing GNU Emacs, there are two
1197ways to find it:
1198
1199@itemize @bullet
1200@item
2f3ac208
GM
1201Send a message to
1202@ifnothtml
1203the mailing list @email{help-gnu-emacs@@gnu.org},
1204@end ifnothtml
1205@ifhtml
1206@url{http://lists.gnu.org/mailman/listinfo/help-gnu-emacs, the
1207help-gnu-emacs mailing list},
1208@end ifhtml
1209or post your request on newsgroup @code{gnu.emacs.help}. (This
1210mailing list and newsgroup interconnect, so it does not matter which
1211one you use.)
6bf7aab6
DL
1212
1213@item
1669fab9
GM
1214Look in the @uref{http://www.fsf.org/resources/service/, service
1215directory} for someone who might help you for a fee.
6bf7aab6 1216@end itemize
ab5796a9 1217
0d6e9754
LT
1218@ifnottex
1219@lowersections
1220@end ifnottex