]> code.delx.au - gnu-emacs/blob - doc/misc/faq.texi
consistently use @insertcopying, @direntry, @contents
[gnu-emacs] / doc / misc / faq.texi
1 \input texinfo @c -*- mode: texinfo; -*-
2 @c %**start of header
3 @setfilename ../../info/efaq
4 @settitle GNU Emacs FAQ
5 @c %**end of header
6
7 @c This is used in many places
8 @set VER 23.0.90
9
10 @c This file is maintained by Romain Francoise <rfrancoise@gnu.org>.
11 @c Feel free to install changes without prior permission (but I'd
12 @c appreciate a notice if you do).
13
14 @copying
15 Copyright @copyright{} 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
16 Free Software Foundation, Inc.@*
17 Copyright 1994,1995,1996,1997,1998,1999,2000 Reuven M. Lerner@*
18 Copyright 1992,1993 Steven Byrnes@*
19 Copyright 1990,1991,1992 Joseph Brian Wells@*
20
21 @quotation
22 This list of frequently asked questions about GNU Emacs with answers
23 (``FAQ'') may be translated into other languages, transformed into other
24 formats (e.g. Texinfo, Info, WWW, WAIS), and updated with new information.
25
26 The same conditions apply to any derivative of the FAQ as apply to the FAQ
27 itself. Every copy of the FAQ must include this notice or an approved
28 translation, information on who is currently maintaining the FAQ and how to
29 contact them (including their e-mail address), and information on where the
30 latest version of the FAQ is archived (including FTP information).
31
32 The FAQ may be copied and redistributed under these conditions, except that
33 the FAQ may not be embedded in a larger literary work unless that work
34 itself allows free copying and redistribution.
35
36 [This version has been heavily edited since it was included in the Emacs
37 distribution.]
38 @end quotation
39 @end copying
40
41 @dircategory Emacs
42 @direntry
43 * Emacs FAQ: (efaq). Frequently Asked Questions about Emacs.
44 @end direntry
45
46 @c The @titlepage stuff only appears in the printed version
47 @titlepage
48 @sp 10
49 @center @titlefont{GNU Emacs FAQ}
50
51 @c The following two commands start the copyright page.
52 @page
53 @vskip 0pt plus 1filll
54 @insertcopying
55 @end titlepage
56
57 @contents
58
59 @node Top, FAQ notation, (dir), (dir)
60
61 This is the GNU Emacs FAQ, last updated on @today{}.
62
63 This FAQ is maintained as a part of GNU Emacs. If you find any errors,
64 or have any suggestions, please use @kbd{M-x report-emacs-bug} to report
65 them.
66
67 @ifnottex
68 @insertcopying
69 @end ifnottex
70
71 @menu
72 * FAQ notation::
73 * General questions::
74 * Getting help::
75 * Status of Emacs::
76 * Common requests::
77 * Bugs and problems::
78 * Compiling and installing Emacs::
79 * Finding Emacs and related packages::
80 * Major packages and programs::
81 * Key bindings::
82 * Alternate character sets::
83 * Mail and news::
84 * Concept index::
85 @end menu
86
87 @c ------------------------------------------------------------
88 @node FAQ notation, General questions, Top, Top
89 @chapter FAQ notation
90 @cindex FAQ notation
91
92 This chapter describes notation used in the GNU Emacs FAQ, as well as in
93 the Emacs documentation. Consult this section if this is the first time
94 you are reading the FAQ, or if you are confused by notation or terms
95 used in the FAQ.
96
97 @menu
98 * Basic keys::
99 * Extended commands::
100 * On-line manual::
101 * File-name conventions::
102 * Common acronyms::
103 @end menu
104
105 @node Basic keys, Extended commands, FAQ notation, FAQ notation
106 @section What do these mean: @kbd{C-h}, @kbd{C-M-a}, @key{RET}, @kbd{@key{ESC} a}, etc.?
107 @cindex Basic keys
108 @cindex Control key, notation for
109 @cindex @key{Meta} key, notation for
110 @cindex Control-Meta characters, notation for
111 @cindex @kbd{C-h}, definition of
112 @cindex @kbd{C-M-h}, definition of
113 @cindex @key{DEL}, definition of
114 @cindex @key{ESC}, definition of
115 @cindex @key{LFD}, definition of
116 @cindex @key{RET}, definition of
117 @cindex @key{SPC}, definition of
118 @cindex @key{TAB}, definition of
119 @cindex Notation for keys
120
121 @itemize @bullet
122
123 @item
124 @kbd{C-x}: press the @key{x} key while holding down the @key{Control} key
125
126 @item
127 @kbd{M-x}: press the @key{x} key while holding down the @key{Meta} key
128 (if your computer doesn't have a @key{Meta} key, @pxref{No Meta key})
129
130 @item
131 @kbd{M-C-x}: press the @key{x} key while holding down both @key{Control}
132 and @key{Meta}
133
134 @item
135 @kbd{C-M-x}: a synonym for the above
136
137 @item
138 @key{LFD}: Linefeed or Newline; same as @kbd{C-j}
139
140 @item
141 @key{RET}: @key{Return}, sometimes marked @key{Enter}; same as @kbd{C-m}
142
143 @item
144 @key{DEL}: @key{Delete}, usually @strong{not} the same as
145 @key{Backspace}; same as @kbd{C-?} (see @ref{Backspace invokes help}, if
146 deleting invokes Emacs help)
147
148 @item
149 @key{ESC}: Escape; same as @kbd{C-[}
150
151 @item
152 @key{TAB}: Tab; same as @kbd{C-i}
153
154 @item
155 @key{SPC}: Space bar
156
157 @end itemize
158
159 Key sequences longer than one key (and some single-key sequences) are
160 written inside quotes or on lines by themselves, like this:
161
162 @display
163 @kbd{M-x frobnicate-while-foo RET}
164 @end display
165
166 @noindent
167 Any real spaces in such a key sequence should be ignored; only @key{SPC}
168 really means press the space key.
169
170 The @acronym{ASCII} code sent by @kbd{C-x} (except for @kbd{C-?}) is the value
171 that would be sent by pressing just @key{x} minus 96 (or 64 for
172 upper-case @key{X}) and will be from 0 to 31. On Unix and GNU/Linux
173 terminals, the @acronym{ASCII} code sent by @kbd{M-x} is the sum of 128 and the
174 @acronym{ASCII} code that would be sent by pressing just @key{x}. Essentially,
175 @key{Control} turns off bits 5 and 6 and @key{Meta} turns on bit
176 7@footnote{
177 DOS and Windows terminals don't set bit 7 when the @key{Meta} key is
178 pressed.}.
179
180 @kbd{C-?} (aka @key{DEL}) is @acronym{ASCII} code 127. It is a misnomer to call
181 @kbd{C-?} a ``control'' key, since 127 has both bits 5 and 6 turned ON.
182 Also, on very few keyboards does @kbd{C-?} generate @acronym{ASCII} code 127.
183
184 @inforef{Text Characters, Text Characters, emacs}, and @inforef{Keys,
185 Keys, emacs}, for more information. (@xref{On-line manual}, for more
186 information about Info.)
187
188 @node Extended commands, On-line manual, Basic keys, FAQ notation
189 @section What does @file{M-x @var{command}} mean?
190 @cindex Extended commands
191 @cindex Commands, extended
192 @cindex M-x, meaning of
193
194 @kbd{M-x @var{command}} means type @kbd{M-x}, then type the name of the
195 command, then type @key{RET}. (@xref{Basic keys}, if you're not sure
196 what @kbd{M-x} and @key{RET} mean.)
197
198 @kbd{M-x} (by default) invokes the command
199 @code{execute-extended-command}. This command allows you to run any
200 Emacs command if you can remember the command's name. If you can't
201 remember the command's name, you can type @key{TAB} and @key{SPC} for
202 completion, @key{?} for a list of possibilities, and @kbd{M-p} and
203 @kbd{M-n} (or up-arrow and down-arrow on terminals that have these
204 editing keys) to see previous commands entered. An Emacs @dfn{command}
205 is an @dfn{interactive} Emacs function.
206
207 @cindex @key{Do} key
208 Your system administrator may have bound other key sequences to invoke
209 @code{execute-extended-command}. A function key labeled @kbd{Do} is a
210 good candidate for this, on keyboards that have such a key.
211
212 If you need to run non-interactive Emacs functions, see @ref{Evaluating
213 Emacs Lisp code}.
214
215 @node On-line manual, File-name conventions, Extended commands, FAQ notation
216 @section How do I read topic XXX in the on-line manual?
217 @cindex On-line manual, reading topics in
218 @cindex Reading topics in the on-line manual
219 @cindex Finding topics in the on-line manual
220 @cindex Info, finding topics in
221
222 When we refer you to some @var{topic} in the on-line manual, you can
223 read this manual node inside Emacs (assuming nothing is broken) by
224 typing @kbd{C-h i m emacs @key{RET} m @var{topic} @key{RET}}.
225
226 This invokes Info, the GNU hypertext documentation browser. If you don't
227 already know how to use Info, type @key{?} from within Info.
228
229 If we refer to @var{topic}:@var{subtopic}, type @kbd{C-h i m emacs
230 @key{RET} m @var{topic} @key{RET} m @var{subtopic} @key{RET}}.
231
232 If these commands don't work as expected, your system administrator may
233 not have installed the Info files, or may have installed them
234 improperly. In this case you should complain.
235
236 @xref{Getting a printed manual}, if you would like a paper copy of the
237 Emacs manual.
238
239 @node File-name conventions, Common acronyms, On-line manual, FAQ notation
240 @section What are @file{etc/SERVICE}, @file{src/config.h}, and @file{lisp/default.el}?
241 @cindex File-name conventions
242 @cindex Conventions for file names
243 @cindex Directories and files that come with Emacs
244
245 These are files that come with Emacs. The Emacs distribution is divided
246 into subdirectories; the important ones are @file{etc}, @file{lisp}, and
247 @file{src}.
248
249 If you use Emacs, but don't know where it is kept on your system, start
250 Emacs, then type @kbd{C-h v data-directory @key{RET}}. The directory
251 name displayed by this will be the full pathname of the installed
252 @file{etc} directory. (This full path is recorded in the Emacs variable
253 @code{data-directory}, and @kbd{C-h v} displays the value and the
254 documentation of a variable.)
255
256 The location of your Info directory (i.e., where on-line documentation
257 is stored) is kept in the variable @code{Info-default-directory-list}. Use
258 @kbd{C-h v Info-default-directory-list @key{RET}} to see the value of
259 this variable, which will be a list of directory names. The last
260 directory in that list is probably where most Info files are stored. By
261 default, Info documentation is placed in @file{/usr/local/info}.
262
263 Some of these files are available individually via FTP or e-mail; see
264 @ref{Informational files for Emacs}. They all are available in the
265 source distribution. Many of the files in the @file{etc} directory are
266 also available via the Emacs @samp{Help} menu, or by typing @kbd{C-h ?}
267 (@kbd{M-x help-for-help}).
268
269 Your system administrator may have removed the @file{src} directory and
270 many files from the @file{etc} directory.
271
272 @node Common acronyms, , File-name conventions, FAQ notation
273 @section What are FSF, LPF, OSF, GNU, RMS, FTP, and GPL?
274 @cindex FSF, definition of
275 @cindex LPF, definition of
276 @cindex OSF, definition of
277 @cindex GNU, definition of
278 @cindex RMS, definition of
279 @cindex Stallman, Richard, acronym for
280 @cindex Richard Stallman, acronym for
281 @cindex FTP, definition of
282 @cindex GPL, definition of
283 @cindex Acronyms, definitions for
284 @cindex Common acronyms, definitions for
285
286 @table @asis
287
288 @item FSF
289 Free Software Foundation
290
291 @item LPF
292 League for Programming Freedom
293
294 @item OSF
295 Open Software Foundation
296
297 @item GNU
298 GNU's Not Unix
299
300 @item RMS
301 Richard Matthew Stallman
302
303 @item FTP
304 File Transfer Protocol
305
306 @item GPL
307 GNU General Public License
308
309 @end table
310
311 Avoid confusing the FSF, the LPF, and the OSF. The LPF opposes
312 look-and-feel copyrights and software patents. The FSF aims to make
313 high quality free software available for everyone. The OSF is a
314 consortium of computer vendors which develops commercial software for
315 Unix systems.
316
317 The word ``free'' in the title of the Free Software Foundation refers to
318 ``freedom,'' not ``zero cost.'' Anyone can charge any price for
319 GPL-covered software that they want to. However, in practice, the
320 freedom enforced by the GPL leads to low prices, because you can always
321 get the software for less money from someone else, since everyone has
322 the right to resell or give away GPL-covered software.
323
324 @c ------------------------------------------------------------
325 @node General questions, Getting help, FAQ notation, Top
326 @chapter General questions
327 @cindex General questions
328
329 This chapter contains general questions having to do with Emacs, the
330 Free Software Foundation, and related organizations.
331
332 @menu
333 * The LPF::
334 * Real meaning of copyleft::
335 * Guidelines for newsgroup postings::
336 * Newsgroup archives::
337 * Reporting bugs::
338 * Unsubscribing from Emacs lists::
339 * Contacting the FSF::
340 @end menu
341
342 @node The LPF, Real meaning of copyleft, General questions, General questions
343 @section What is the LPF?
344 @cindex LPF, description of
345 @cindex League for Programming Freedom
346 @cindex Software patents, opposition to
347 @cindex Patents for software, opposition to
348
349 The LPF opposes the expanding danger of software patents and
350 look-and-feel copyrights. To get more information, feel free to contact
351 the LPF via e-mail or otherwise. You may also contact
352 @email{jbw@@cs.bu.edu, Joe Wells}; he will be happy to talk to you
353 about the LPF.
354
355 You can find more information about the LPF in the file @file{etc/LPF}.
356 More papers describing the LPF's views are available on the Internet and
357 also from @uref{http://lpf.ai.mit.edu/, the LPF home page}.
358
359 @node Real meaning of copyleft, Guidelines for newsgroup postings, The LPF, General questions
360 @section What is the real legal meaning of the GNU copyleft?
361 @cindex Copyleft, real meaning of
362 @cindex GPL, real meaning of
363 @cindex General Public License, real meaning of
364 @cindex Discussion of the GPL
365
366 The real legal meaning of the GNU General Public License (copyleft) will
367 only be known if and when a judge rules on its validity and scope.
368 There has never been a copyright infringement case involving the GPL to
369 set any precedents. Please take any discussion regarding this issue to
370 the newsgroup @uref{news:gnu.misc.discuss}, which was created to hold the
371 extensive flame wars on the subject.
372
373 RMS writes:
374
375 @quotation
376 The legal meaning of the GNU copyleft is less important than the spirit,
377 which is that Emacs is a free software project and that work pertaining
378 to Emacs should also be free software. ``Free'' means that all users
379 have the freedom to study, share, change and improve Emacs. To make
380 sure everyone has this freedom, pass along source code when you
381 distribute any version of Emacs or a related program, and give the
382 recipients the same freedom that you enjoyed.
383 @end quotation
384
385 @node Guidelines for newsgroup postings, Newsgroup archives, Real meaning of copyleft, General questions
386 @section What are appropriate messages for @uref{news:gnu.emacs.help}, @uref{news:gnu.emacs.bug}, @uref{news:comp.emacs}, etc.?
387 @cindex Newsgroups, appropriate messages for
388 @cindex GNU newsgroups, appropriate messages for
389 @cindex Usenet groups, appropriate messages for
390 @cindex Mailing lists, appropriate messages for
391 @cindex Posting messages to newsgroups
392
393 @cindex GNU mailing lists
394 The file @file{etc/MAILINGLISTS} describes the purpose of each GNU
395 mailing list. (@xref{Informational files for Emacs}, if you want a copy
396 of the file.) For those lists which are gatewayed with newsgroups, it
397 lists both the newsgroup name and the mailing list address.
398
399 The newsgroup @uref{news:comp.emacs} is for discussion of Emacs programs
400 in general. This includes Emacs along with various other
401 implementations, such as XEmacs, JOVE, MicroEmacs, Freemacs, MG,
402 Unipress, CCA, and Epsilon.
403
404 Many people post Emacs questions to @uref{news:comp.emacs} because they
405 don't receive any of the @code{gnu.*} newsgroups. Arguments have been
406 made both for and against posting GNU-Emacs-specific material to
407 @uref{news:comp.emacs}. You have to decide for yourself.
408
409 Messages advocating ``non-free'' software are considered unacceptable on
410 any of the @code{gnu.*} newsgroups except for @uref{news:gnu.misc.discuss},
411 which was created to hold the extensive flame-wars on the subject.
412 ``Non-free'' software includes any software for which the end user can't
413 freely modify the source code and exchange enhancements. Be careful to
414 remove the @code{gnu.*} groups from the @samp{Newsgroups:} line when
415 posting a followup that recommends such software.
416
417 @uref{news:gnu.emacs.bug} is a place where bug reports appear, but avoid
418 posting bug reports to this newsgroup directly (@pxref{Reporting bugs}).
419
420 @node Newsgroup archives, Reporting bugs, Guidelines for newsgroup postings, General questions
421 @section Where can I get old postings to @uref{news:gnu.emacs.help} and other GNU groups?
422 @cindex Archived postings from @code{gnu.emacs.help}
423 @cindex Usenet archives for GNU groups
424 @cindex Old Usenet postings for GNU groups
425
426 The FSF has maintained archives of all of the GNU mailing lists for many
427 years, although there may be some unintentional gaps in coverage. The
428 archive is not particularly well organized or easy to retrieve
429 individual postings from, but pretty much everything is there.
430
431 The archive is at @uref{ftp://lists.gnu.org/}.
432
433 The archive can be browsed over the web at
434 @uref{http://lists.gnu.org/archive/html/, the GNU mail archive}.
435
436 Web-based Usenet search services, such as
437 @uref{http://groups.google.com/groups/dir?sel=33592484, Google}, also
438 archive the @code{gnu.*} groups.
439
440 You can read the archives of the @code{gnu.*} groups and post new
441 messages at @uref{http://gmane.org/, Gmane}.
442
443 @node Reporting bugs, Unsubscribing from Emacs lists, Newsgroup archives, General questions
444 @section Where should I report bugs and other problems with Emacs?
445 @cindex Bug reporting
446 @cindex Good bug reports
447 @cindex How to submit a bug report
448 @cindex Reporting bugs
449
450 The correct way to report Emacs bugs is to use the command
451 @kbd{M-x report-emacs-bug}. It sets up a mail buffer with the
452 essential information and the correct e-mail address which is
453 @email{bug-gnu-emacs@@gnu.org} for the released versions of Emacs.
454 Anything sent to @email{bug-gnu-emacs@@gnu.org} also appears in the
455 newsgroup @uref{news:gnu.emacs.bug}, but please use e-mail instead of
456 news to submit the bug report. This ensures a reliable return address
457 so you can be contacted for further details.
458
459 Be sure to read the ``Bugs'' section of the Emacs manual before reporting
460 a bug! The manual describes in detail how to submit a useful bug
461 report (@pxref{Bugs, , Reporting Bugs, emacs, The GNU Emacs Manual}).
462 (@xref{On-line manual}, if you don't know how to read the manual.)
463
464 RMS says:
465
466 @quotation
467 Sending bug reports to @email{help-gnu-emacs@@gnu.org} (which has the
468 effect of posting on @uref{news:gnu.emacs.help}) is undesirable because
469 it takes the time of an unnecessarily large group of people, most of
470 whom are just users and have no idea how to fix these problem.
471 @email{bug-gnu-emacs@@gnu.org} reaches a much smaller group of people
472 who are more likely to know what to do and have expressed a wish to
473 receive more messages about Emacs than the others.
474 @end quotation
475
476 RMS says it is sometimes fine to post to @uref{news:gnu.emacs.help}:
477
478 @quotation
479 If you have reported a bug and you don't hear about a possible fix,
480 then after a suitable delay (such as a week) it is okay to post on
481 @code{gnu.emacs.help} asking if anyone can help you.
482 @end quotation
483
484 If you are unsure whether you have found a bug, consider the following
485 non-exhaustive list, courtesy of RMS:
486
487 @quotation
488 If Emacs crashes, that is a bug. If Emacs gets compilation errors
489 while building, that is a bug. If Emacs crashes while building, that
490 is a bug. If Lisp code does not do what the documentation says it
491 does, that is a bug.
492 @end quotation
493
494 @node Unsubscribing from Emacs lists, Contacting the FSF, Reporting bugs, General questions
495 @section How do I unsubscribe from this mailing list?
496 @cindex Unsubscribing from GNU mailing lists
497 @cindex Removing yourself from GNU mailing lists
498
499 If you are receiving a GNU mailing list named @var{list}, you might be
500 able to unsubscribe from it by sending a request to the address
501 @email{@var{list}-request@@gnu.org}. However, this will not work if you are
502 not listed on the main mailing list, but instead receive the mail from a
503 distribution point. In that case, you will have to track down at which
504 distribution point you are listed. Inspecting the @samp{Received} headers
505 on the mail messages may help, along with liberal use of the @samp{EXPN} or
506 @samp{VRFY} sendmail commands through @samp{telnet @var{site-address}
507 smtp}. Ask your postmaster for help, if you cannot figure out these
508 details.
509
510 @node Contacting the FSF, , Unsubscribing from Emacs lists, General questions
511 @section What is the current address of the FSF?
512 @cindex Snail mail address of the FSF
513 @cindex Postal address of the FSF
514 @cindex Contracting the FSF
515 @cindex Free Software Foundation, contacting
516
517 @table @asis
518
519 @item E-mail
520 gnu@@gnu.org
521
522 @item Telephone
523 +1-617-542-5942
524
525 @item Fax
526 +1-617-542-2652
527
528 @item World Wide Web
529 @uref{http://www.gnu.org/}
530
531 @item Postal address
532 Free Software Foundation@*
533 51 Franklin Street, Fifth Floor@*
534 Boston, MA 02110-1301@*
535 USA@*
536
537 @end table
538
539 @cindex Ordering GNU software
540 For details on how to order items directly from the FSF, see the
541 @uref{http://www.gnu.org/order/order.html, GNU Web site}.
542
543 @c ------------------------------------------------------------
544 @node Getting help, Status of Emacs, General questions, Top
545 @chapter Getting help
546 @cindex Getting help
547
548 This chapter tells you how to get help with Emacs
549
550 @menu
551 * Basic editing::
552 * Learning how to do something::
553 * Getting a printed manual::
554 * Emacs Lisp documentation::
555 * Installing Texinfo documentation::
556 * Printing a Texinfo file::
557 * Viewing Info files outside of Emacs::
558 * Informational files for Emacs::
559 * Help installing Emacs::
560 * Obtaining the FAQ::
561 @end menu
562
563 @node Basic editing, Learning how to do something, Getting help, Getting help
564 @section I'm just starting Emacs; how do I do basic editing?
565 @cindex Basic editing with Emacs
566 @cindex Beginning editing
567 @cindex Tutorial, invoking the
568 @cindex Self-paced tutorial, invoking the
569 @cindex Help system, entering the
570
571 Type @kbd{C-h t} to invoke the self-paced tutorial. Just typing
572 @kbd{C-h} enters the help system. Starting with Emacs 22, the tutorial
573 is available in many foreign languages such as French, German, Japanese,
574 Russian, etc. Use @kbd{M-x help-with-tutorial-spec-language @key{RET}}
575 to choose your language and start the tutorial.
576
577 Your system administrator may have changed @kbd{C-h} to act like
578 @key{DEL} to deal with local keyboards. You can use @kbd{M-x
579 help-for-help} instead to invoke help. To discover what key (if any)
580 invokes help on your system, type @kbd{M-x where-is @key{RET}
581 help-for-help @key{RET}}. This will print a comma-separated list of key
582 sequences in the echo area. Ignore the last character in each key
583 sequence listed. Each of the resulting key sequences invokes help.
584
585 Emacs help works best if it is invoked by a single key whose value
586 should be stored in the variable @code{help-char}.
587
588 @node Learning how to do something, Getting a printed manual, Basic editing, Getting help
589 @section How do I find out how to do something in Emacs?
590 @cindex Help for Emacs
591 @cindex Learning to do something in Emacs
592 @cindex Reference card for Emacs
593 @cindex Overview of help systems
594
595 There are several methods for finding out how to do things in Emacs.
596
597 @itemize @bullet
598
599 @cindex Reading the Emacs manual
600 @item
601 The complete text of the Emacs manual is available on-line via the Info
602 hypertext reader. Type @kbd{C-h r} to display the manual in Info mode.
603 Typing @key{h} immediately after entering Info will provide a short
604 tutorial on how to use it.
605
606 @cindex Lookup a subject in a manual
607 @cindex Index search in a manual
608 @item
609 To quickly locate the section of the manual which discusses a certain
610 issue, or describes a command or a variable, type @kbd{C-h i m emacs
611 @key{RET} i @var{topic} @key{RET}}, where @var{topic} is the name of the
612 topic, the command, or the variable which you are looking for. If this
613 does not land you on the right place in the manual, press @kbd{,}
614 (comma) repeatedly until you find what you need. (The @kbd{i} and
615 @kbd{,} keys invoke the index-searching functions, which look for the
616 @var{topic} you type in all the indices of the Emacs manual.)
617
618 @cindex Apropos
619 @item
620 You can list all of the commands whose names contain a certain word
621 (actually which match a regular expression) using @kbd{C-h a} (@kbd{M-x
622 command-apropos}).
623
624 @cindex Command description in the manual
625 @item
626 The command @kbd{C-h F} (@code{Info-goto-emacs-command-node}) prompts
627 for the name of a command, and then attempts to find the section in the
628 Emacs manual where that command is described.
629
630 @cindex Finding commands and variables
631 @item
632 You can list all of the functions and variables whose names contain a
633 certain word using @kbd{M-x apropos}.
634
635 @item
636 You can list all of the functions and variables whose documentation
637 matches a regular expression or a string, using @kbd{M-x
638 apropos-documentation}.
639
640 @item
641 You can order a hardcopy of the manual from the FSF. @xref{Getting a
642 printed manual}.
643
644 @cindex Reference cards, in other languages
645 @item
646 You can get a printed reference card listing commands and keys to
647 invoke them. You can order one from the FSF for $1 (or 10 for $5),
648 or you can print your own from the @file{etc/refcards/refcard.tex} or
649 @file{etc/refcards/refcard.ps} files in the Emacs distribution.
650 Beginning with version 21.1, the Emacs distribution comes with
651 translations of the reference card into several languages; look for
652 files named @file{etc/refcards/@var{lang}-refcard.*}, where @var{lang}
653 is a two-letter code of the language. For example, the German version
654 of the reference card is in the files @file{etc/refcards/de-refcard.tex}
655 and @file{etc/recards/de-refcard.ps}.
656
657 @item
658 There are many other commands in Emacs for getting help and
659 information. To get a list of these commands, type @samp{?} after
660 @kbd{C-h}.
661
662 @end itemize
663
664 @node Getting a printed manual, Emacs Lisp documentation, Learning how to do something, Getting help
665 @section How do I get a printed copy of the Emacs manual?
666 @cindex Printed Emacs manual, obtaining
667 @cindex Manual, obtaining a printed or HTML copy of
668 @cindex Emacs manual, obtaining a printed or HTML copy of
669
670 You can order a printed copy of the Emacs manual from the FSF. For
671 details see the @uref{http://www.gnu.org/order/order.html, GNU Web site}.
672
673 @c The number 620 below is version-dependent!
674 The full Texinfo source for the manual also comes in the @file{man}
675 directory of the Emacs distribution, if you're daring enough to try to
676 print out this 620-page manual yourself (@pxref{Printing a Texinfo
677 file}).
678
679 If you absolutely have to print your own copy, and you don't have @TeX{},
680 you can get a PostScript version from
681
682 @uref{http://www.gnu.org/software/emacs/manual/emacs.ps.gz}
683
684 @cindex HTML version of Emacs manual, obtaining
685 An HTML version of the manual is at
686
687 @uref{http://www.gnu.org/software/emacs/manual/emacs.html}
688
689 The manual is available in other formats at
690
691 @uref{http://www.gnu.org/software/emacs/manual/}
692
693 @xref{Learning how to do something}, for how to view the manual on-line.
694
695 @node Emacs Lisp documentation, Installing Texinfo documentation, Getting a printed manual, Getting help
696 @section Where can I get documentation on Emacs Lisp?
697 @cindex Documentation on Emacs Lisp
698 @cindex Function documentation
699 @cindex Variable documentation
700 @cindex Emacs Lisp Reference Manual
701 @cindex Reference manual for Emacs Lisp
702
703 Within Emacs, you can type @kbd{C-h f} to get the documentation for a
704 function, @kbd{C-h v} for a variable.
705
706 For more information, the Emacs Lisp Reference Manual is available
707 on-line, in Info format. @xref{Top, Emacs Lisp,, elisp, The
708 Emacs Lisp Reference Manual}.
709
710 You can also order a hardcopy of the manual, details on ordering it from
711 FSF are on the @uref{http://www.gnu.org/order/order.html, GNU Web site}.
712
713 An HTML version of the Emacs Lisp Reference Manual is available at
714
715 @uref{http://www.gnu.org/software/emacs/elisp-manual/elisp.html}
716
717 @node Installing Texinfo documentation, Printing a Texinfo file, Emacs Lisp documentation, Getting help
718 @section How do I install a piece of Texinfo documentation?
719 @cindex Texinfo documentation, installing
720 @cindex Installing Texinfo documentation
721 @cindex New Texinfo files, installing
722 @cindex Documentation, installing new Texinfo files
723 @cindex Info files, how to install
724
725 First, you must turn the Texinfo files into Info files. You may do this
726 using the stand-alone @file{makeinfo} program, available as part of the latest
727 Texinfo package at
728
729 @uref{ftp://ftp.gnu.org/pub/gnu/texinfo/texinfo-4.8.tar.gz}
730
731 and all mirrors of @samp{ftp.gnu.org} (for a list, @pxref{Current GNU
732 distributions}).
733
734 For information about the Texinfo format, read the Texinfo manual which
735 comes with the Texinfo package. This manual also comes installed in
736 Info format, so you can read it on-line; type @kbd{C-h i m texinfo
737 @key{RET}}.
738
739 Alternatively, you could use the Emacs command @kbd{M-x
740 texinfo-format-buffer}, after visiting the Texinfo source file of the
741 manual you want to convert.
742
743 Neither @code{texinfo-format-buffer} nor @file{makeinfo} installs the
744 resulting Info files in Emacs's Info tree. To install Info files,
745 perform these steps:
746
747 @enumerate
748 @item
749 Move the files to the @file{info} directory in the installed Emacs
750 distribution. @xref{File-name conventions}, if you don't know where that
751 is.
752
753 @item
754 Run the @code{install-info} command, which is part of the Texinfo
755 distribution, to update the main Info directory menu, like this:
756
757 @example
758 install-info --info-dir=@var{dir-path} @var{dir-path}/@var{file}
759 @end example
760
761 @noindent
762 where @var{dir-path} is the full path to the directory where you copied
763 the produced Info file(s), and @var{file} is the name of the Info file
764 you produced and want to install.
765
766 If you don't have the @code{install-info} command installed, you can
767 edit the file @file{info/dir} in the installed Emacs distribution, and
768 add a line for the top level node in the Info package that you are
769 installing. Follow the examples already in this file. The format is:
770
771 @example
772 * Topic: (relative-pathname). Short description of topic.
773 @end example
774
775 @end enumerate
776
777 If you want to install Info files and you don't have the necessary
778 privileges, you have several options:
779
780 @itemize @bullet
781 @item
782 Info files don't actually need to be installed before being used.
783 You can use a prefix argument for the @code{info} command and specify
784 the name of the Info file in the minibuffer. This goes to the node
785 named @samp{Top} in that file. For example, to view a Info file named
786 @file{@var{info-file}} in your home directory, you can type this:
787
788 @example
789 @kbd{C-u C-h i ~/@var{info-file} @key{RET}}
790 @end example
791
792 Alternatively, you can feed a file name to the @code{Info-goto-node}
793 command (invoked by pressing @key{g} in Info mode) by typing the name
794 of the file in parentheses, like this:
795
796 @example
797 @kbd{C-h i g (~/@var{info-file}) @key{RET}}
798 @end example
799
800 @item
801 You can create your own Info directory. You can tell Emacs where that
802 Info directory is by adding its pathname to the value of the variable
803 @code{Info-default-directory-list}. For example, to use a private Info
804 directory which is a subdirectory of your home directory named @file{Info},
805 you could put this in your @file{.emacs} file:
806
807 @lisp
808 (setq Info-default-directory-list
809 (cons "~/Info" Info-default-directory-list))
810 @end lisp
811
812 You will need a top-level Info file named @file{dir} in this directory
813 which has everything the system @file{dir} file has in it, except it should
814 list only entries for Info files in that directory. You might not need
815 it if all files in this directory were referenced by other @file{dir}
816 files. The node lists from all @file{dir} files in
817 @code{Info-default-directory-list} are merged by the Info system.
818
819 @end itemize
820
821 @node Printing a Texinfo file, Viewing Info files outside of Emacs, Installing Texinfo documentation, Getting help
822 @section How do I print a Texinfo file?
823 @cindex Printing a Texinfo file
824 @cindex Texinfo file, printing
825 @cindex Printing documentation
826
827 You can't get nicely printed output from Info files; you must still have
828 the original Texinfo source file for the manual you want to print.
829
830 Assuming you have @TeX{} installed on your system, follow these steps:
831
832 @enumerate
833
834 @item
835 Make sure the first line of the Texinfo file looks like this:
836
837 @example
838 \input texinfo
839 @end example
840
841 You may need to change @samp{texinfo} to the full pathname of the
842 @file{texinfo.tex} file, which comes with Emacs as
843 @file{doc/misc/texinfo.tex} (or copy or link it into the current directory).
844
845 @item
846 Type @kbd{texi2dvi @var{texinfo-source}}, where @var{texinfo-source} is
847 the name of the Texinfo source file for which you want to produce a
848 printed copy.
849
850 The @samp{texi2dvi} script is part of the GNU Texinfo distribution
851 (@pxref{Installing Texinfo documentation}).
852
853 @item
854 Print the DVI file @file{@var{texinfo-source}.dvi} in the normal way for
855 printing DVI files at your site. For example, if you have a PostScript
856 printer, run the @code{dvips} program to print the DVI file on that
857 printer.
858
859 @end enumerate
860
861 To get more general instructions, retrieve the latest Texinfo package
862 (@pxref{Installing Texinfo documentation}).
863
864 @node Viewing Info files outside of Emacs, Informational files for Emacs, Printing a Texinfo file, Getting help
865 @section Can I view Info files without using Emacs?
866 @cindex Viewing Info files
867 @cindex Info file viewers
868 @cindex Alternative Info file viewers
869
870 Yes. Here are some alternative programs:
871
872 @itemize @bullet
873
874 @item
875 @code{info}, a stand-alone version of the Info program, comes as part of
876 the Texinfo package. @xref{Installing Texinfo documentation}, for
877 details.
878
879 @item
880 Xinfo, a stand-alone version of the Info program that runs under X
881 Window system. You can get it at
882 @uref{ftp://ftp.gnu.org/pub/gnu/xinfo/xinfo-1.01.01.tar.gz} and all
883 mirrors of @samp{ftp.gnu.org} (see @ref{Current GNU distributions}, for a
884 list of mirrors).
885
886 @item
887 Tkinfo, an Info viewer that runs under X Window system and uses Tcl/Tk.
888 You can get Tkinfo at
889 @uref{http://math-www.uni-paderborn.de/~axel/tkinfo/}.
890
891 @end itemize
892
893 @node Informational files for Emacs, Help installing Emacs, Viewing Info files outside of Emacs, Getting help
894 @section What informational files are available for Emacs?
895 @cindex Informational files included with Emacs
896 @cindex Files included with Emacs
897 @cindex @file{COPYING}, description of file
898 @cindex @file{DISTRIB}, description of file
899 @cindex @file{FTP}, description of file
900 @cindex @file{GNU}, description of file
901 @cindex @file{INTERVIEW}, description of file
902 @cindex @file{LPF}, description of file
903 @cindex @file{MACHINES}, description of file
904 @cindex @file{MAILINGLISTS}, description of file
905 @cindex @file{NEWS}, description of file
906 @cindex @file{SERVICE}, description of file
907 @cindex @file{SUN-SUPPORT}, description of file
908
909 This isn't a frequently asked question, but it should be! A variety of
910 informational files about Emacs and relevant aspects of the GNU project
911 are available for you to read.
912
913 The following files are available in the @file{etc} directory of the
914 Emacs distribution (see @ref{File-name conventions}, if you're not sure
915 where that is).
916
917 @table @file
918
919 @item COPYING
920 GNU General Public License
921
922 @item DISTRIB
923 Emacs Availability Information, including the popular Free Software
924 Foundation Order Form
925
926 @item FTP
927 How to get GNU Software by Internet FTP or by UUCP
928
929 @item GNU
930 The GNU Manifesto
931
932 @item INTERVIEW
933 Richard Stallman discusses his public-domain UNIX-compatible software
934 system with BYTE editors
935
936 @item LPF
937 Why you should join the League for Programming Freedom
938
939 @item MACHINES
940 Status of Emacs on Various Machines and Systems
941
942 @item MAILINGLISTS
943 GNU Project Electronic Mailing Lists
944
945 @item NEWS
946 Emacs news, a history of recent user-visible changes
947
948 @item SERVICE
949 GNU Service Directory
950
951 @item SUN-SUPPORT
952 including ``Using Emacstool with GNU Emacs''
953
954 @end table
955
956 More GNU information, including back issues of the @cite{GNU's
957 Bulletin}, are at
958
959 @uref{http://www.gnu.org/bulletins/bulletins.html} and
960
961 @uref{http://www.cs.pdx.edu/~trent/gnu/gnu.html}
962
963 @node Help installing Emacs, Obtaining the FAQ, Informational files for Emacs, Getting help
964 @section Where can I get help in installing Emacs?
965 @cindex Installation help
966 @cindex Help installing Emacs
967
968 @xref{Installing Emacs}, for some basic installation hints, and see
969 @ref{Problems building Emacs}, or @ref{Linking with -lX11 fails}, if you
970 have problems with the installation.
971
972 The file @file{etc/SERVICE} (see @ref{File-name conventions}, if you're
973 not sure where that is) lists companies and individuals willing to sell
974 you help in installing or using Emacs. An up-to-date version this file
975 is available on @samp{ftp.gnu.org} (@pxref{Informational files for
976 Emacs}).
977
978 @node Obtaining the FAQ, , Help installing Emacs, Getting help
979 @section Where can I get the latest version of this FAQ?
980 @cindex FAQ, obtaining the
981 @cindex Latest FAQ version, obtaining the
982 @cindex Retrieving the latest FAQ version
983 @cindex E-mail, retrieving the FAQ via
984 @cindex Web, reading the FAQ on the
985
986 The Emacs FAQ is available in several ways:
987
988 @itemize @bullet
989
990 @item
991 Inside of Emacs itself. You can get it from selecting the @samp{Emacs
992 FAQ} option from the @samp{Help} menu of the Emacs menu bar at the top
993 of any Emacs frame, or by typing @kbd{C-h C-f} (@kbd{M-x view-emacs-FAQ}).
994
995 @item
996 Via USENET. If you can read news, the FAQ should be available in your
997 news spool, in both the @uref{news:gnu.emacs.help} and
998 @uref{news:comp.emacs} newsgroups. Every news reader should allow you
999 to read any news article that is still in the news spool, even if you
1000 have read the article before. You may need to read the instructions for
1001 your news reader to discover how to do this. In @file{rn}, this command
1002 will do this for you at the article selection level:
1003
1004 @example
1005 ?GNU Emacs Frequently Asked Questions?rc:m
1006 @end example
1007
1008 In Gnus, you should type @kbd{C-u C-x C-s} from the @file{*Summary*}
1009 buffer or @kbd{C-u @key{SPC}} from the @file{*Newsgroup*} buffer to view
1010 all articles in a newsgroup.
1011
1012 If the FAQ articles have expired and have been deleted from your news
1013 spool, it might (or might not) do some good to complain to your news
1014 administrator, because the most recent FAQ should not expire for a
1015 while.
1016
1017 @item
1018 In the Emacs distribution. Since Emacs 18.56, the FAQ at the time
1019 of release has been part of the Emacs distribution as either
1020 @file{etc/FAQ}, @file{man/faq.texi}, or (from version 23 onwards)
1021 @file{doc/misc/faq.texi} (@pxref{File-name conventions}).
1022
1023 @item
1024 Via anonymous ftp and e-mail from @file{rtfm.mit.edu} (and its mirror in
1025 Europe), the main repository for FAQs and other items posted to
1026 news.answers. The Emacs FAQs are available at
1027
1028 @uref{ftp://rtfm.mit.edu/pub/usenet/comp.emacs/} and
1029
1030 @uref{ftp://ftp.uni-paderborn.de/pub/doc/FAQ/comp/emacs/}
1031
1032 If you do not have access to anonymous FTP, you can access the archives
1033 using the @file{rtfm.mit.edu} mail server. The Emacs FAQ can be
1034 retrieved by sending mail to @email{mail-server@@rtfm.mit.edu} with a
1035 blank subject and containing
1036
1037 @example
1038 send usenet/news.answers/GNU-Emacs-FAQ/diffs
1039 send usenet/news.answers/GNU-Emacs-FAQ/part1
1040 send usenet/news.answers/GNU-Emacs-FAQ/part2
1041 send usenet/news.answers/GNU-Emacs-FAQ/part3
1042 send usenet/news.answers/GNU-Emacs-FAQ/part4
1043 send usenet/news.answers/GNU-Emacs-FAQ/part5
1044 @end example
1045
1046 For more information, send email to @email{mail-server@@rtfm.mit.edu}
1047 with @samp{help} and @samp{index} in the body on separate lines.
1048 @end itemize
1049
1050 @c ------------------------------------------------------------
1051 @node Status of Emacs, Common requests, Getting help, Top
1052 @chapter Status of Emacs
1053 @cindex Status of Emacs
1054
1055 This chapter gives you basic information about Emacs, including its
1056 latest version status.
1057
1058 @menu
1059 * Origin of the term Emacs::
1060 * Latest version of Emacs::
1061 * New in Emacs 20::
1062 * New in Emacs 21::
1063 * New in Emacs 22::
1064 @end menu
1065
1066 @node Origin of the term Emacs, Latest version of Emacs, Status of Emacs, Status of Emacs
1067 @section Where does the name ``Emacs'' come from?
1068 @cindex Origin of the term ``Emacs''
1069 @cindex Emacs name origin
1070 @cindex TECO
1071 @cindex Original version of Emacs
1072
1073 Emacs originally was an acronym for Editor MACroS. RMS says he ``picked
1074 the name Emacs because @key{E} was not in use as an abbreviation on ITS at
1075 the time.'' The first Emacs was a set of macros written in 1976 at MIT
1076 by RMS for the editor TECO (Text Editor and COrrector, originally Tape
1077 Editor and COrrector) under ITS on a PDP-10. RMS had already extended
1078 TECO with a ``real-time'' full-screen mode with reprogrammable keys.
1079 Emacs was started by @email{gls@@east.sun.com, Guy Steele} as a project
1080 to unify the many divergent TECO command sets and key bindings at MIT,
1081 and completed by RMS.
1082
1083 Many people have said that TECO code looks a lot like line noise; you
1084 can read more at @uref{news:alt.lang.teco}. Someone has written a TECO
1085 implementation in Emacs Lisp (to find it, see @ref{Packages that do not
1086 come with Emacs}); it would be an interesting project to run the
1087 original TECO Emacs inside of Emacs.
1088
1089 @cindex Why Emacs?
1090 For some not-so-serious alternative reasons for Emacs to have that
1091 name, check out the file @file{etc/JOKES} (@pxref{File-name
1092 conventions}).
1093
1094 @node Latest version of Emacs, New in Emacs 20, Origin of the term Emacs, Status of Emacs
1095 @section What is the latest version of Emacs?
1096 @cindex Version, latest
1097 @cindex Latest version of Emacs
1098
1099 Emacs @value{VER} is the current version as of this writing.
1100
1101 @node New in Emacs 20, New in Emacs 21, Latest version of Emacs, Status of Emacs
1102 @section What is different about Emacs 20?
1103 @cindex Differences between Emacs 19 and Emacs 20
1104 @cindex Emacs 20, new features in
1105
1106 To find out what has changed in recent versions, type @kbd{C-h C-n}
1107 (@kbd{M-x view-emacs-news}). The oldest changes are at the bottom of
1108 the file, so you might want to read it starting there, rather than at
1109 the top.
1110
1111 The differences between Emacs versions 18 and 19 was rather dramatic;
1112 the introduction of frames, faces, and colors on windowing systems was
1113 obvious to even the most casual user.
1114
1115 There are differences between Emacs versions 19 and 20 as well, but many
1116 are more subtle or harder to find. Among the changes are the inclusion
1117 of MULE code for languages that use non-Latin characters and for mixing
1118 several languages in the same document; the ``Customize'' facility for
1119 modifying variables without having to use Lisp; and automatic conversion
1120 of files from Macintosh, Microsoft, and Unix platforms.
1121
1122 A number of older Lisp packages, such as Gnus, Supercite and the
1123 calendar/diary, have been updated and enhanced to work with Emacs 20,
1124 and are now included with the standard distribution.
1125
1126
1127 @node New in Emacs 21, New in Emacs 22, New in Emacs 20, Status of Emacs
1128 @section What is different about Emacs 21?
1129 @cindex Differences between Emacs 20 and Emacs 21
1130 @cindex Emacs 21, new features in
1131 @cindex Recently introduced features
1132
1133 @cindex Variable-size fonts
1134 @cindex Toolbar support
1135 Emacs 21 features a thorough rewrite of the display engine. The new
1136 display engine supports variable-size fonts, images, and can play sounds
1137 on platforms which support that. As a result, the visual appearance of
1138 Emacs, when it runs on a windowed display, is much more reminiscent of
1139 modern GUI programs, and includes 3D widgets (used for the mode line and
1140 the scroll bars), a configurable and extensible toolbar, tooltips
1141 (a.k.a.@: balloon help), and other niceties.
1142
1143 @cindex Colors on text-only terminals
1144 @cindex TTY colors
1145 In addition, Emacs 21 supports faces on text-only terminals. This means
1146 that you can now have colors when you run Emacs on a GNU/Linux console
1147 and on @code{xterm} with @kbd{emacs -nw}.
1148
1149 @node New in Emacs 22, , New in Emacs 21, Status of Emacs
1150 @section What is different about Emacs 22?
1151 @cindex Differences between Emacs 21 and Emacs 22
1152 @cindex Emacs 22, new features in
1153 @cindex Recently introduced features
1154 @cindex Default features
1155
1156 @itemize
1157 @cindex GTK+ Toolkit
1158 @cindex Drag-and-drop
1159 @item
1160 Emacs can be built with GTK+ widgets, and supports drag-and-drop
1161 operation on X.
1162
1163 @cindex Supported systems
1164 @item
1165 Emacs 22 features support for GNU/Linux systems on S390 and x86-64
1166 machines, as well as support for the Mac OS X and Cygwin operating
1167 systems.
1168
1169 @item
1170 The native MS-Windows, and Mac OS X builds include full support
1171 for images, toolbar, and tooltips.
1172
1173 @item
1174 Font Lock mode, Auto Compression mode, and File Name Shadow Mode are
1175 enabled by default.
1176
1177 @item
1178 The maximum size of buffers has been doubled and is 256M on 32-bit
1179 machines.
1180
1181 @item
1182 Links can be followed with @kbd{mouse-1}, in addition to @kbd{mouse-2}.
1183
1184 @cindex Mouse wheel
1185 @item
1186 Mouse wheel support is enabled by default.
1187
1188 @item
1189 Window fringes are customizable.
1190
1191 @item
1192 The mode line of the selected window is now highlighted.
1193
1194 @item
1195 The minibuffer prompt is displayed in a distinct face.
1196
1197 @item
1198 Abbrev definitions are read automatically at startup.
1199
1200 @item
1201 Grep mode is separate from Compilation mode and has many new options and
1202 commands specific to grep.
1203
1204 @item
1205 The original Emacs macro system has been replaced by the new Kmacro
1206 package, which provides many new commands and features and a simple
1207 interface that uses the function keys F3 and F4. Macros are stored in a
1208 macro ring, and can be debugged and edited interactively.
1209
1210 @item
1211 The Grand Unified Debugger (GUD) can be used with a full graphical user
1212 interface to GDB; this provides many features found in traditional
1213 development environments, making it easy to manipulate breakpoints, add
1214 watch points, display the call stack, etc. Breakpoints are visually
1215 indicated in the source buffer.
1216
1217 @item
1218 @cindex New modes
1219 Many new modes and packages have been included in Emacs, such as Calc,
1220 TRAMP, URL, IDO, CUA, ERC, rcirc, Table, Image-Dired, SES, Ruler, Org,
1221 PGG, Flymake, Password, Printing, Reveal, wdired, t-mouse, longlines,
1222 savehist, Conf mode, Python mode, DNS mode, etc.
1223
1224 @cindex Multilingual Environment
1225 @item
1226 Leim is now part of Emacs. Unicode support has been much improved, and
1227 the following input methods have been added: belarusian, bulgarian-bds,
1228 bulgarian-phonetic, chinese-sisheng, croatian, dutch, georgian,
1229 latin-alt-postfix, latin-postfix, latin-prefix, latvian-keyboard,
1230 lithuanian-numeric, lithuanian-keyboard, malayalam-inscript, rfc1345,
1231 russian-computer, sgml, slovenian, tamil-inscript, ucs,
1232 ukrainian-computer, vietnamese-telex, and welsh.
1233
1234 The following language environments have also been added: Belarusian,
1235 Bulgarian, Chinese-EUC-TW, Croatian, French, Georgian, Italian, Latin-6,
1236 Latin-7, Latvian, Lithuanian, Malayalam, Russian, Slovenian, Swedish,
1237 Tajik, Tamil, UTF-8, Ukrainian, Welsh, and Windows-1255.
1238
1239 @cindex Documentation
1240 @cindex Emacs Lisp Manual
1241 @item
1242 In addition, Emacs 22 now includes the Emacs Lisp Reference Manual
1243 (@pxref{Emacs Lisp documentation}) and the Emacs Lisp Intro.
1244 @end itemize
1245
1246 Many other changes have been made in Emacs 22, use @kbd{C-h n} to get a
1247 full list.
1248
1249 @c ------------------------------------------------------------
1250 @node Common requests, Bugs and problems, Status of Emacs, Top
1251 @chapter Common requests
1252 @cindex Common requests
1253
1254 @menu
1255 * Setting up a customization file::
1256 * Using Customize::
1257 * Colors on a TTY::
1258 * Debugging a customization file::
1259 * Displaying the current line or column::
1260 * Displaying the current file name in the titlebar::
1261 * Turning on abbrevs by default::
1262 * Associating modes with files::
1263 * Highlighting a region::
1264 * Replacing highlighted text::
1265 * Controlling case sensitivity::
1266 * Working with unprintable characters::
1267 * Searching for/replacing newlines::
1268 * Yanking text in isearch::
1269 * Wrapping words automatically::
1270 * Turning on auto-fill by default::
1271 * Spell-checkers::
1272 * Checking TeX and *roff documents::
1273 * Changing load-path::
1274 * Using an already running Emacs process::
1275 * Compiler error messages::
1276 * Indenting switch statements::
1277 * Customizing C and C++ indentation::
1278 * Horizontal scrolling::
1279 * Overwrite mode::
1280 * Turning off beeping::
1281 * Turning the volume down::
1282 * Automatic indentation::
1283 * Matching parentheses::
1284 * Hiding #ifdef lines::
1285 * Repeating commands::
1286 * Valid X resources::
1287 * Evaluating Emacs Lisp code::
1288 * Changing the length of a Tab::
1289 * Inserting text at the beginning of each line::
1290 * Underlining paragraphs::
1291 * Forcing the cursor to remain in the same column::
1292 * Forcing Emacs to iconify itself::
1293 * Using regular expressions::
1294 * Replacing text across multiple files::
1295 * Documentation for etags::
1296 * Disabling backups::
1297 * Disabling auto-save-mode::
1298 * Going to a line by number::
1299 * Modifying pull-down menus::
1300 * Deleting menus and menu options::
1301 * Turning on syntax highlighting::
1302 * Scrolling only one line::
1303 * Editing MS-DOS files::
1304 * Filling paragraphs with a single space::
1305 * Escape sequences in shell output::
1306 * Fullscreen mode on MS-Windows::
1307 @end menu
1308
1309 @node Setting up a customization file, Using Customize, Common requests, Common requests
1310 @section How do I set up a @file{.emacs} file properly?
1311 @cindex @file{.emacs} file, setting up
1312 @cindex @file{.emacs} file, locating
1313 @cindex Init file, setting up
1314 @cindex Customization file, setting up
1315
1316 @inforef{Init File, Init File, emacs}.
1317
1318 In general, new Emacs users should not have @file{.emacs} files, because
1319 it causes confusing non-standard behavior. Then they send questions to
1320 @email{help-gnu-emacs@@gnu.org} asking why Emacs isn't behaving as
1321 documented.
1322
1323 Beginning with version 20.1, Emacs includes the new Customize facility
1324 (@pxref{Using Customize}). This allows users who are unfamiliar with
1325 Emacs Lisp to modify their @file{.emacs} files in a relatively
1326 straightforward way, using menus rather than Lisp code. Most packages
1327 support Customize as of this writing.
1328
1329 While Customize might indeed make it easier to configure Emacs,
1330 consider taking a bit of time to learn Emacs Lisp and modifying your
1331 @file{.emacs} directly. Simple configuration options are described
1332 rather completely in @inforef{Init File, Init File, emacs}, for users
1333 interested in performing frequently requested, basic tasks.
1334
1335 Sometimes users are unsure as to where their @file{.emacs} file should
1336 be found. Visiting the file as @file{~/.emacs} from Emacs will find
1337 the correct file.
1338
1339 @node Using Customize, Colors on a TTY, Setting up a customization file, Common requests
1340 @section How do I start using Customize?
1341 @cindex Customize groups
1342 @cindex Customizing variables
1343 @cindex Customizing faces
1344
1345 The main Customize entry point is @kbd{M-x customize @key{RET}}. This
1346 command takes you to a buffer listing all the available Customize
1347 groups. From there, you can access all customizable options and faces,
1348 change their values, and save your changes to your init file.
1349 @inforef{Easy Customization, Easy Customization, emacs}.
1350
1351 If you know the name of the group in advance (e.g. ``shell''), use
1352 @kbd{M-x customize-group @key{RET}}.
1353
1354 If you wish to customize a single option, use @kbd{M-x customize-option
1355 @key{RET}}. This command prompts you for the name of the option to
1356 customize, with completion.
1357
1358 @node Colors on a TTY, Debugging a customization file, Using Customize, Common requests
1359 @section How do I get colors and syntax highlighting on a TTY?
1360 @cindex Colors on a TTY
1361 @cindex Syntax highlighting on a TTY
1362 @cindex Console, colors
1363
1364 In Emacs 21.1 and later, colors and faces are supported in non-windowed mode,
1365 i.e.@: on Unix and GNU/Linux text-only terminals and consoles, and when
1366 invoked as @samp{emacs -nw} on X, and MS-Windows. (Colors and faces were
1367 supported in the MS-DOS port since Emacs 19.29.) Emacs automatically
1368 detects color support at startup and uses it if available. If you think
1369 that your terminal supports colors, but Emacs won't use them, check the
1370 @code{termcap} entry for your display type for color-related
1371 capabilities.
1372
1373 The command @kbd{M-x list-colors-display} pops up a window which
1374 exhibits all the colors Emacs knows about on the current display.
1375
1376 Syntax highlighting is on by default since version 22.1.
1377
1378 @node Debugging a customization file, Displaying the current line or column, Colors on a TTY, Common requests
1379 @section How do I debug a @file{.emacs} file?
1380 @cindex Debugging @file{.emacs} file
1381 @cindex @file{.emacs} debugging
1382 @cindex Init file debugging
1383 @cindex @samp{-debug-init} option
1384
1385 Start Emacs with the @samp{-debug-init} command-line option. This
1386 enables the Emacs Lisp debugger before evaluating your @file{.emacs}
1387 file, and places you in the debugger if something goes wrong. The top
1388 line in the @file{trace-back} buffer will be the error message, and the
1389 second or third line of that buffer will display the Lisp code from your
1390 @file{.emacs} file that caused the problem.
1391
1392 You can also evaluate an individual function or argument to a function
1393 in your @file{.emacs} file by moving the cursor to the end of the
1394 function or argument and typing @kbd{C-x C-e} (@kbd{M-x
1395 eval-last-sexp}).
1396
1397 Use @kbd{C-h v} (@kbd{M-x describe-variable}) to check the value of
1398 variables which you are trying to set or use.
1399
1400 @node Displaying the current line or column, Displaying the current file name in the titlebar, Debugging a customization file, Common requests
1401 @section How do I make Emacs display the current line (or column) number?
1402 @cindex @code{line-number-mode}
1403 @cindex Displaying the current line or column
1404 @cindex Line number, displaying the current
1405 @cindex Column, displaying the current
1406 @cindex @code{mode-line-format}
1407
1408 To have Emacs automatically display the current line number of the point
1409 in the mode line, do @kbd{M-x line-number-mode}. You can also put the
1410 form
1411
1412 @lisp
1413 (setq line-number-mode t)
1414 @end lisp
1415
1416 @noindent
1417 in your @file{.emacs} file to achieve this whenever you start Emacs.
1418 (Line number display is on by default, unless your site-specific
1419 initialization disables it.) Note that Emacs will not display the line
1420 number if the buffer's size in bytes is larger than the value of the
1421 variable @code{line-number-display-limit}.
1422
1423 You can similarly display the current column with
1424 @kbd{M-x column-number-mode}, or by putting the form
1425
1426 @lisp
1427 (setq column-number-mode t)
1428 @end lisp
1429
1430 @noindent
1431 in your @file{.emacs} file.
1432
1433 The @code{"%c"} format specifier in the variable @code{mode-line-format}
1434 will insert the current column's value into the mode line. See the
1435 documentation for @code{mode-line-format} (using @kbd{C-h v
1436 mode-line-format @key{RET}}) for more information on how to set and use
1437 this variable.
1438
1439 Users of all Emacs versions can display the current column using the
1440 @samp{column} package written by @email{abraham@@dina.kvl.dk, Per
1441 Abrahamsen}. @xref{Packages that do not come with Emacs}, for
1442 instructions on how to get it.
1443
1444 @cindex Set number capability in @code{vi} emulators
1445 None of the @code{vi} emulation modes provide the ``set number''
1446 capability of @code{vi} (as far as we know). The @samp{setnu} package
1447 written by @email{kyle@@wonderworks.com, Kyle Jones} provides this
1448 feature. So too does @samp{wb-line-number}, written by
1449 @email{naoki.y.nakamura@@nifty.com, Naoki Nakamura}.
1450
1451 @node Displaying the current file name in the titlebar, Turning on abbrevs by default, Displaying the current line or column, Common requests
1452 @section How can I modify the titlebar to contain the current file name?
1453 @cindex Titlebar, displaying the current file name in
1454 @cindex File name, displaying in the titlebar
1455 @cindex @code{frame-title-format}
1456
1457 The contents of an Emacs frame's titlebar is controlled by the variable
1458 @code{frame-title-format}, which has the same structure as the variable
1459 @code{mode-line-format}. (Use @kbd{C-h v} or @kbd{M-x
1460 describe-variable} to get information about one or both of these
1461 variables.)
1462
1463 By default, the titlebar for a frame does contain the name of the buffer
1464 currently being visited, except if there is a single frame. In such a
1465 case, the titlebar contains Emacs invocation name and the name of the
1466 machine at which Emacs was invoked. This is done by setting
1467 @code{frame-title-format} to the default value of
1468
1469 @lisp
1470 (multiple-frames "%b" ("" invocation-name "@@" system-name))
1471 @end lisp
1472
1473 To modify the behavior such that frame titlebars contain the buffer's
1474 name regardless of the number of existing frames, include the following
1475 in your @file{.emacs}:
1476
1477 @lisp
1478 (setq frame-title-format "%b")
1479 @end lisp
1480
1481 @node Turning on abbrevs by default, Associating modes with files, Displaying the current file name in the titlebar, Common requests
1482 @section How do I turn on abbrevs by default just in mode @var{mymode}?
1483 @cindex Abbrevs, turning on by default
1484
1485 Put this in your @file{.emacs} file:
1486
1487 @lisp
1488 (condition-case ()
1489 (quietly-read-abbrev-file)
1490 (file-error nil))
1491
1492 (add-hook '@var{mymode}-mode-hook
1493 (lambda ()
1494 (setq abbrev-mode t)))
1495 @end lisp
1496
1497 Starting with Emacs 22, the standard abbrevs file is read automatically
1498 at startup, so the first of these two forms becomes unnecessary.
1499
1500 @node Associating modes with files, Highlighting a region, Turning on abbrevs by default, Common requests
1501 @section How do I make Emacs use a certain major mode for certain files?
1502 @cindex Associating modes with files
1503 @cindex File extensions and modes
1504 @cindex @code{auto-mode-alist}, modifying
1505 @cindex Modes, associating with file extensions
1506
1507 If you want to use a certain mode @var{foo} for all files whose names end
1508 with the extension @file{.@var{bar}}, this will do it for you:
1509
1510 @lisp
1511 (setq auto-mode-alist (cons '("\\.@var{bar}\\'" . @var{foo}-mode) auto-mode-alist))
1512 @end lisp
1513
1514 Otherwise put this somewhere in the first line of any file you want to
1515 edit in the mode @var{foo} (in the second line, if the first line begins
1516 with @samp{#!}):
1517
1518 @example
1519 -*- @var{foo} -*-
1520 @end example
1521
1522 @cindex Major mode for shell scripts
1523 Beginning with Emacs 19, the variable @code{interpreter-mode-alist}
1524 specifies which mode to use when loading a shell script. (Emacs
1525 determines which interpreter you're using by examining the first line of
1526 the script.) This feature only applies when the file name doesn't
1527 indicate which mode to use. Use @kbd{C-h v} (or @kbd{M-x
1528 describe-variable}) on @code{interpreter-mode-alist} to learn more.
1529
1530 @node Highlighting a region, Replacing highlighted text, Associating modes with files, Common requests
1531 @section How can I highlight a region of text in Emacs?
1532 @cindex Highlighting text
1533 @cindex Text, highlighting
1534 @cindex @code{transient-mark-mode}
1535 @cindex Region, highlighting a
1536
1537 You can cause the region to be highlighted when the mark is active by
1538 including
1539
1540 @lisp
1541 (transient-mark-mode t)
1542 @end lisp
1543
1544 @noindent
1545 in your @file{.emacs} file.
1546
1547 @node Replacing highlighted text, Controlling case sensitivity, Highlighting a region, Common requests
1548 @section How can I replace highlighted text with what I type?
1549 @cindex @code{delete-selection-mode}
1550 @cindex Replacing highlighted text
1551 @cindex Highlighting and replacing text
1552
1553 Use @code{delete-selection-mode}, which you can start automatically by
1554 placing the following Lisp form in your @file{.emacs} file:
1555
1556 @lisp
1557 (delete-selection-mode 1)
1558 @end lisp
1559
1560 According to the documentation string for @code{delete-selection-mode}
1561 (which you can read using @kbd{M-x describe-function @key{RET}
1562 delete-selection-mode @key{RET}}):
1563
1564 @quotation
1565 When ON, typed text replaces the selection if the selection is active.
1566 When OFF, typed text is just inserted at point.
1567 @end quotation
1568
1569 This mode also allows you to delete (not kill) the highlighted region by
1570 pressing @key{DEL}.
1571
1572 @node Controlling case sensitivity, Working with unprintable characters, Replacing highlighted text, Common requests
1573 @section How do I control Emacs's case-sensitivity when searching/replacing?
1574 @cindex @code{case-fold-search}
1575 @cindex Case sensitivity of searches
1576 @cindex Searching without case sensitivity
1577 @cindex Ignoring case in searches
1578
1579 For searching, the value of the variable @code{case-fold-search}
1580 determines whether they are case sensitive:
1581
1582 @lisp
1583 (setq case-fold-search nil) ; make searches case sensitive
1584 (setq case-fold-search t) ; make searches case insensitive
1585 @end lisp
1586
1587 @cindex Case sensitivity in replacements
1588 @cindex Replacing, and case sensitivity
1589 @cindex @code{case-replace}
1590 Similarly, for replacing, the variable @code{case-replace} determines
1591 whether replacements preserve case.
1592
1593 You can also toggle case sensitivity at will in isearch with @kbd{M-c}.
1594
1595 To change the case sensitivity just for one major mode, use the major
1596 mode's hook. For example:
1597
1598 @lisp
1599 (add-hook '@var{foo}-mode-hook
1600 (lambda ()
1601 (setq case-fold-search nil)))
1602 @end lisp
1603
1604 @node Working with unprintable characters, Searching for/replacing newlines, Controlling case sensitivity, Common requests
1605 @section How do I search for, delete, or replace unprintable (eight-bit or control) characters?
1606 @cindex Unprintable characters, working with
1607 @cindex Working with unprintable characters
1608 @cindex Control characters, working with
1609 @cindex Eight-bit characters, working with
1610 @cindex Searching for unprintable characters
1611 @cindex Regexps and unprintable characters
1612
1613 To search for a single character that appears in the buffer as, for
1614 example, @samp{\237}, you can type @kbd{C-s C-q 2 3 7}. (This assumes
1615 the value of @code{search-quote-char} is 17 (i.e., @kbd{C-q}).)
1616 Searching for @strong{all} unprintable characters is best done with a
1617 regular expression (@dfn{regexp}) search. The easiest regexp to use for
1618 the unprintable chars is the complement of the regexp for the printable
1619 chars.
1620
1621 @itemize @bullet
1622
1623 @item
1624 Regexp for the printable chars: @samp{[\t\n\r\f -~]}
1625
1626 @item
1627 Regexp for the unprintable chars: @samp{[^\t\n\r\f -~]}
1628
1629 @end itemize
1630
1631 To type these special characters in an interactive argument to
1632 @code{isearch-forward-regexp} or @code{re-search-forward}, you need to
1633 use @kbd{C-q}. (@samp{\t}, @samp{\n}, @samp{\r}, and @samp{\f} stand
1634 respectively for @key{TAB}, @key{LFD}, @key{RET}, and @kbd{C-l}.) So,
1635 to search for unprintable characters using @code{re-search-forward}:
1636
1637 @kbd{M-x re-search-forward @key{RET} [^ @key{TAB} C-q @key{LFD} C-q @key{RET} C-q C-l @key{SPC} -~] @key{RET}}
1638
1639 Using @code{isearch-forward-regexp}:
1640
1641 @kbd{C-M-s [^ @key{TAB} @key{LFD} C-q @key{RET} C-q C-l @key{SPC} -~]}
1642
1643 To delete all unprintable characters, simply use replace-regexp:
1644
1645 @kbd{M-x replace-regexp @key{RET} [^ @key{TAB} C-q @key{LFD} C-q @key{RET} C-q C-l @key{SPC} -~] @key{RET} @key{RET}}
1646
1647 Replacing is similar to the above. To replace all unprintable
1648 characters with a colon, use:
1649
1650 M-x replace-regexp @key{RET} [^ @key{TAB} C-q @key{LFD} C-q @key{RET} C-q C-l @key{SPC} -~] @key{RET} : @key{RET}
1651
1652 @node Searching for/replacing newlines, Yanking text in isearch, Working with unprintable characters, Common requests
1653 @section How do I input a newline character in isearch or query-replace?
1654 @cindex Searching for newlines
1655 @cindex Replacing newlines
1656
1657 Use @kbd{C-q C-j}. For more information, see @inforef{Special Isearch,
1658 Special Input for Incremental Search, emacs}.
1659
1660
1661 @node Yanking text in isearch, Wrapping words automatically, Searching for/replacing newlines, Common requests
1662 @section How do I copy text from the kill ring into the search string?
1663 @cindex Yanking text into the search string
1664 @cindex isearch yanking
1665
1666 Use @kbd{M-y}. @inforef{Isearch Yank, Isearch Yanking, emacs}.
1667
1668 @node Wrapping words automatically, Turning on auto-fill by default, Yanking text in isearch, Common requests
1669 @section How do I make Emacs wrap words for me?
1670 @cindex Wrapping word automatically
1671 @cindex Wrapping lines
1672 @cindex Line wrap
1673 @cindex @code{auto-fill-mode}, introduction to
1674 @cindex Maximum line width, default value
1675 @cindex @code{fill-column}, default value
1676
1677 Use @code{auto-fill-mode}, activated by typing @kbd{M-x auto-fill-mode}.
1678 The default maximum line width is 70, determined by the variable
1679 @code{fill-column}. To learn how to turn this on automatically, see
1680 @ref{Turning on auto-fill by default}.
1681
1682 @node Turning on auto-fill by default, Spell-checkers, Wrapping words automatically, Common requests
1683 @section How do I turn on @code{auto-fill-mode} by default?
1684 @cindex @code{auto-fill-mode}, activating automatically
1685 @cindex Filling automatically
1686 @cindex Automatic entry to @code{auto-fill-mode}
1687
1688 To turn on @code{auto-fill-mode} just once for one buffer, use @kbd{M-x
1689 auto-fill-mode}.
1690
1691 To turn it on for every buffer in a certain mode, you must use the hook
1692 for that mode. For example, to turn on @code{auto-fill} mode for all
1693 text buffers, including the following in your @file{.emacs} file:
1694
1695 @lisp
1696 (add-hook 'text-mode-hook 'turn-on-auto-fill)
1697 @end lisp
1698
1699 If you want @code{auto-fill} mode on in all major modes, do this:
1700
1701 @lisp
1702 (setq-default auto-fill-function 'do-auto-fill)
1703 @end lisp
1704
1705 @node Spell-checkers, Checking TeX and *roff documents, Turning on auto-fill by default, Common requests
1706 @section Where can I get a better spelling checker for Emacs?
1707 @cindex Checking spelling
1708 @cindex Spelling, checking text documents
1709
1710 Use Ispell. @xref{Ispell}.
1711
1712 @node Checking TeX and *roff documents, Changing load-path, Spell-checkers, Common requests
1713 @section How can I spell-check @TeX{} or *roff documents?
1714 @cindex Spelling, checking @TeX{} documents
1715 @cindex @TeX{} documents, checking spelling in
1716
1717 Use Ispell. Ispell can handle @TeX{} and *roff documents.
1718 @xref{Ispell}.
1719
1720 @node Changing load-path, Using an already running Emacs process, Checking TeX and *roff documents, Common requests
1721 @section How do I change @code{load-path}?
1722 @cindex @code{load-path}, modifying
1723 @cindex Modifying @code{load-path}
1724 @cindex Adding to @code{load-path}
1725
1726 In general, you should only add to the @code{load-path}. You can add
1727 directory @var{/dir/subdir} to the load path like this:
1728
1729 @lisp
1730 (setq load-path (cons "/dir/subdir/" load-path))
1731 @end lisp
1732
1733 To do this relative to your home directory:
1734
1735 @lisp
1736 (setq load-path (cons "~/mysubdir/" load-path))
1737 @end lisp
1738
1739 @node Using an already running Emacs process, Compiler error messages, Changing load-path, Common requests
1740 @section How do I use an already running Emacs from another window?
1741 @cindex @code{emacsclient}
1742 @cindex Emacs server functions
1743 @cindex Using an existing Emacs process
1744
1745 @code{emacsclient}, which comes with Emacs, is for editing a file using
1746 an already running Emacs rather than starting up a new Emacs. It does
1747 this by sending a request to the already running Emacs, which must be
1748 expecting the request.
1749
1750 @itemize @bullet
1751
1752 @item
1753 Setup:
1754
1755 Emacs must have executed the @code{server-start} function for
1756 @samp{emacsclient} to work. This can be done either by a command line
1757 option:
1758
1759 @example
1760 emacs -f server-start
1761 @end example
1762
1763 or by invoking @code{server-start} from @file{.emacs}:
1764
1765 @lisp
1766 (if (@var{some conditions are met}) (server-start))
1767 @end lisp
1768
1769 When this is done, Emacs creates a Unix domain socket named
1770 @file{server} in @file{/tmp/emacs@var{userid}}. See
1771 @code{server-socket-dir}.
1772
1773 To get your news reader, mail reader, etc., to invoke
1774 @samp{emacsclient}, try setting the environment variable @code{EDITOR}
1775 (or sometimes @code{VISUAL}) to the value @samp{emacsclient}. You may
1776 have to specify the full pathname of the @samp{emacsclient} program
1777 instead. Examples:
1778
1779 @example
1780 # csh commands:
1781 setenv EDITOR emacsclient
1782
1783 # using full pathname
1784 setenv EDITOR /usr/local/emacs/etc/emacsclient
1785
1786 # sh command:
1787 EDITOR=emacsclient ; export EDITOR
1788 @end example
1789
1790 @item
1791 Normal use:
1792
1793 When @samp{emacsclient} is run, it connects to the socket and passes its
1794 command line options to Emacs, which at the next opportunity will visit
1795 the files specified. (Line numbers can be specified just like with
1796 Emacs.) The user will have to switch to the Emacs window by hand. When
1797 the user is done editing a file, the user can type @kbd{C-x #} (or
1798 @kbd{M-x server-edit}) to indicate this. If there is another buffer
1799 requested by @code{emacsclient}, Emacs will switch to it; otherwise
1800 @code{emacsclient} will exit, signaling the calling program to continue.
1801
1802 @cindex @code{gnuserv}
1803 There is an enhanced version of @samp{emacsclient} called
1804 @samp{gnuserv}, written by @email{ange@@hplb.hpl.hp.com, Andy Norman}
1805 (@pxref{Packages that do not come with Emacs}). @samp{gnuserv} uses
1806 Internet domain sockets, so it can work across most network connections.
1807
1808 The most recent @samp{gnuserv} package is available at
1809
1810 @uref{http://meltin.net/hacks/emacs/}
1811
1812 @end itemize
1813
1814 @node Compiler error messages, Indenting switch statements, Using an already running Emacs process, Common requests
1815 @section How do I make Emacs recognize my compiler's funny error messages?
1816 @cindex Compiler error messages, recognizing
1817 @cindex Recognizing non-standard compiler errors
1818 @cindex Regexps for recognizing compiler errors
1819 @cindex Errors, recognizing compiler
1820
1821 Customize the @code{compilation-error-regexp-alist} variable.
1822
1823 @node Indenting switch statements, Customizing C and C++ indentation, Compiler error messages, Common requests
1824 @section How do I change the indentation for @code{switch}?
1825 @cindex @code{switch}, indenting
1826 @cindex Indenting of @code{switch}
1827
1828 Many people want to indent their @code{switch} statements like this:
1829
1830 @example
1831 f()
1832 @{
1833 switch(x) @{
1834 case A:
1835 x1;
1836 break;
1837 case B:
1838 x2;
1839 break;
1840 default:
1841 x3;
1842 @}
1843 @}
1844 @end example
1845
1846 The solution at first appears to be: set @code{c-indent-level} to 4 and
1847 @code{c-label-offset} to -2. However, this will give you an indentation
1848 spacing of four instead of two.
1849
1850 The @emph{real} solution is to use @code{cc-mode} (the default mode for
1851 C programming in Emacs 20 and later) and add the following line to your
1852 @file{.emacs}:
1853
1854 @lisp
1855 (c-set-offset 'case-label '+)
1856 @end lisp
1857
1858 There appears to be no way to do this with the old @code{c-mode}.
1859
1860 @node Customizing C and C++ indentation, Horizontal scrolling, Indenting switch statements, Common requests
1861 @section How to customize indentation in C, C@t{++}, and Java buffers?
1862 @cindex Indentation, how to customize
1863 @cindex Customize indentation
1864
1865 The Emacs @code{cc-mode} features an interactive procedure for
1866 customizing the indentation style, which is fully explained in the
1867 @cite{CC Mode} manual that is part of the Emacs distribution, see
1868 @ref{Customizing Indentation, , Customization Indentation, ccmode,
1869 The CC Mode Manual}. Here's a short summary of the procedure:
1870
1871 @enumerate
1872 @item
1873 Go to the beginning of the first line where you don't like the
1874 indentation and type @kbd{C-c C-o}. Emacs will prompt you for the
1875 syntactic symbol; type @key{RET} to accept the default it suggests.
1876
1877 @item
1878 Emacs now prompts for the offset of this syntactic symbol, showing the
1879 default (the current definition) inside parentheses. You can choose
1880 one of these:
1881
1882 @table @code
1883 @item 0
1884 No extra indentation.
1885 @item +
1886 Indent one basic offset.
1887 @item -
1888 Outdent one basic offset.
1889 @item ++
1890 Indent two basic offsets
1891 @item --
1892 Outdent two basic offsets.
1893 @item *
1894 Indent half basic offset.
1895 @item /
1896 Outdent half basic offset.
1897 @end table
1898
1899 @item
1900 After choosing one of these symbols, type @kbd{C-c C-q} to reindent
1901 the line or the block according to what you just specified.
1902
1903 @item
1904 If you don't like the result, go back to step 1. Otherwise, add the
1905 following line to your @file{.emacs}:
1906
1907 @lisp
1908 (c-set-offset '@var{syntactic-symbol} @var{offset})
1909 @end lisp
1910
1911 @noindent
1912 where @var{syntactic-symbol} is the name Emacs shows in the minibuffer
1913 when you type @kbd{C-c C-o} at the beginning of the line, and
1914 @var{offset} is one of the indentation symbols listed above (@code{+},
1915 @code{/}, @code{0}, etc.) that you've chosen during the interactive
1916 procedure.
1917
1918 @item
1919 Go to the next line whose indentation is not to your liking and repeat
1920 the process there.
1921 @end enumerate
1922
1923 It is recommended to put all the resulting @code{(c-set-offset ...)}
1924 customizations inside a C mode hook, like this:
1925
1926 @lisp
1927 (defun my-c-mode-hook ()
1928 (c-set-offset ...)
1929 (c-set-offset ...))
1930 (add-hook 'c-mode-hook 'my-c-mode-hook)
1931 @end lisp
1932
1933 @noindent
1934 Using @code{c-mode-hook} avoids the need to put a @w{@code{(require
1935 'cc-mode)}} into your @file{.emacs} file, because @code{c-set-offset}
1936 might be unavailable when @code{cc-mode} is not loaded.
1937
1938 Note that @code{c-mode-hook} runs for C source files only; use
1939 @code{c++-mode-hook} for C@t{++} sources, @code{java-mode-hook} for
1940 Java sources, etc. If you want the same customizations to be in
1941 effect in @emph{all} languages supported by @code{cc-mode}, use
1942 @code{c-mode-common-hook}.
1943
1944 @node Horizontal scrolling, Overwrite mode, Customizing C and C++ indentation, Common requests
1945 @section How can I make Emacs automatically scroll horizontally?
1946 @cindex @code{hscroll-mode}
1947 @cindex Horizontal scrolling
1948 @cindex Scrolling horizontally
1949
1950 In Emacs 21 and later, this is on by default: if the variable
1951 @code{truncate-lines} is non-@code{nil} in the current buffer, Emacs
1952 automatically scrolls the display horizontally when point moves off the
1953 left or right edge of the window.
1954
1955 Note that this is overridden by the variable
1956 @code{truncate-partial-width-windows} if that variable is non-nil
1957 and the current buffer is not full-frame width.
1958
1959 In Emacs 20, use the @code{hscroll-mode}. Here is some information from
1960 the documentation, available by typing @kbd{C-h f hscroll-mode @key{RET}}:
1961
1962 Automatically scroll horizontally when the point moves off the
1963 left or right edge of the window.
1964
1965 @itemize @minus
1966 @item
1967 Type @kbd{M-x hscroll-mode} to enable it in the current buffer.
1968
1969 @item
1970 Type @kbd{M-x hscroll-global-mode} to enable it in every buffer.
1971
1972 @item
1973 @code{turn-on-hscroll} is useful in mode hooks as in:
1974
1975 @lisp
1976 (add-hook 'text-mode-hook 'turn-on-hscroll)
1977 @end lisp
1978
1979 @item
1980 @code{hscroll-margin} controls how close the cursor can get to the
1981 edge of the window.
1982
1983 @item
1984 @code{hscroll-step-percent} controls how far to jump once we decide to do so.
1985 @end itemize
1986
1987 @node Overwrite mode, Turning off beeping, Horizontal scrolling, Common requests
1988 @section How do I make Emacs ``typeover'' or ``overwrite'' instead of inserting?
1989 @cindex @key{Insert}
1990 @cindex @code{overwrite-mode}
1991 @cindex Overwriting existing text
1992 @cindex Toggling @code{overwrite-mode}
1993
1994 @kbd{M-x overwrite-mode} (a minor mode). This toggles
1995 @code{overwrite-mode} on and off, so exiting from @code{overwrite-mode}
1996 is as easy as another @kbd{M-x overwrite-mode}.
1997
1998 On some systems, @key{Insert} toggles @code{overwrite-mode} on and off.
1999
2000 @node Turning off beeping, Turning the volume down, Overwrite mode, Common requests
2001 @section How do I stop Emacs from beeping on a terminal?
2002 @cindex Beeping, turning off
2003 @cindex Visible bell
2004 @cindex Bell, visible
2005
2006 @email{martin@@cc.gatech.edu, Martin R. Frank} writes:
2007
2008 Tell Emacs to use the @dfn{visible bell} instead of the audible bell,
2009 and set the visible bell to nothing.
2010
2011 That is, put the following in your @code{TERMCAP} environment variable
2012 (assuming you have one):
2013
2014 @example
2015 ... :vb=: ...
2016 @end example
2017
2018 And evaluate the following Lisp form:
2019
2020 @example
2021 (setq visible-bell t)
2022 @end example
2023
2024 @node Turning the volume down, Automatic indentation, Turning off beeping, Common requests
2025 @section How do I turn down the bell volume in Emacs running under X?
2026 @cindex Bell, volume of
2027 @cindex Volume of bell
2028
2029 On X Window system, you can adjust the bell volume and duration for all
2030 programs with the shell command @code{xset}.
2031
2032 Invoking @code{xset} without any arguments produces some basic
2033 information, including the following:
2034
2035 @example
2036 usage: xset [-display host:dpy] option ...
2037 To turn bell off:
2038 -b b off b 0
2039 To set bell volume, pitch and duration:
2040 b [vol [pitch [dur]]] b on
2041 @end example
2042
2043 @node Automatic indentation, Matching parentheses, Turning the volume down, Common requests
2044 @section How do I tell Emacs to automatically indent a new line to the indentation of the previous line?
2045 @cindex Indenting new lines
2046 @cindex New lines, indenting of
2047 @cindex Previous line, indenting according to
2048 @cindex Text indentation
2049
2050 Such behavior is automatic in Emacs 20 and later. From the
2051 @file{etc/NEWS} file for Emacs 20.2:
2052
2053 @example
2054 ** In Text mode, now only blank lines separate paragraphs. This makes
2055 it possible to get the full benefit of Adaptive Fill mode in Text mode,
2056 and other modes derived from it (such as Mail mode). @key{TAB} in Text
2057 mode now runs the command @code{indent-relative}; this makes a practical
2058 difference only when you use indented paragraphs.
2059
2060 As a result, the old Indented Text mode is now identical to Text mode,
2061 and is an alias for it.
2062
2063 If you want spaces at the beginning of a line to start a paragraph, use
2064 the new mode, Paragraph Indent Text mode.
2065 @end example
2066
2067 @cindex Prefixing lines
2068 @cindex Fill prefix
2069 If you have @code{auto-fill-mode} turned on (@pxref{Turning on auto-fill
2070 by default}), you can tell Emacs to prefix every line with a certain
2071 character sequence, the @dfn{fill prefix}. Type the prefix at the
2072 beginning of a line, position point after it, and then type @kbd{C-x .}
2073 (@code{set-fill-prefix}) to set the fill prefix. Thereafter,
2074 auto-filling will automatically put the fill prefix at the beginning of
2075 new lines, and @kbd{M-q} (@code{fill-paragraph}) will maintain any fill
2076 prefix when refilling the paragraph.
2077
2078 If you have paragraphs with different levels of indentation, you will
2079 have to set the fill prefix to the correct value each time you move to a
2080 new paragraph. There are many packages available to deal with this
2081 (@pxref{Packages that do not come with Emacs}). Look for ``fill'' and
2082 ``indent'' keywords for guidance.
2083
2084 @node Matching parentheses, Hiding #ifdef lines, Automatic indentation, Common requests
2085 @section How do I show which parenthesis matches the one I'm looking at?
2086 @cindex Parentheses, matching
2087 @cindex @file{paren.el}
2088 @cindex Highlighting matching parentheses
2089 @cindex Pairs of parentheses, highlighting
2090 @cindex Matching parentheses
2091
2092 Call @code{show-paren-mode} in your @file{.emacs} file:
2093
2094 @lisp
2095 (show-paren-mode 1)
2096 @end lisp
2097
2098 You can also enable this mode by selecting the @samp{Paren Match
2099 Highlighting} option from the @samp{Options} menu of the Emacs menu bar
2100 at the top of any Emacs frame.
2101
2102 Alternatives to this mode include:
2103
2104 @itemize @bullet
2105
2106 @item
2107 If you're looking at a right parenthesis (or brace or bracket) you can
2108 delete it and reinsert it. Emacs will momentarily move the cursor to
2109 the matching parenthesis.
2110
2111 @item
2112 @kbd{C-M-f} (@code{forward-sexp}) and @kbd{C-M-b} (@code{backward-sexp})
2113 will skip over one set of balanced parentheses, so you can see which
2114 parentheses match. (You can train it to skip over balanced brackets
2115 and braces at the same time by modifying the syntax table.)
2116
2117 @cindex Show matching paren as in @code{vi}
2118 @item
2119 Here is some Emacs Lisp that will make the @key{%} key show the matching
2120 parenthesis, like in @code{vi}. In addition, if the cursor isn't over a
2121 parenthesis, it simply inserts a % like normal.
2122
2123 @lisp
2124 ;; By an unknown contributor
2125
2126 (global-set-key "%" 'match-paren)
2127
2128 (defun match-paren (arg)
2129 "Go to the matching paren if on a paren; otherwise insert %."
2130 (interactive "p")
2131 (cond ((looking-at "\\s\(") (forward-list 1) (backward-char 1))
2132 ((looking-at "\\s\)") (forward-char 1) (backward-list 1))
2133 (t (self-insert-command (or arg 1)))))
2134 @end lisp
2135
2136 @end itemize
2137
2138 @node Hiding #ifdef lines, Repeating commands, Matching parentheses, Common requests
2139 @section In C mode, can I show just the lines that will be left after @code{#ifdef} commands are handled by the compiler?
2140 @cindex @code{#ifdef}, selective display of
2141 @cindex @code{hide-ifdef-mode}
2142 @cindex Hiding @code{#ifdef} text
2143 @cindex Selectively displaying @code{#ifdef} code
2144
2145 @kbd{M-x hide-ifdef-mode}. (This is a minor mode.) You might also want
2146 to investigate @file{cpp.el}, which is distributed with Emacs.
2147
2148 @node Repeating commands, Valid X resources, Hiding #ifdef lines, Common requests
2149 @section How do I repeat a command as many times as possible?
2150 @cindex Repeating commands many times
2151 @cindex Commands, repeating many times
2152 @cindex @code{.}, equivalent to @code{vi} command
2153
2154 As of Emacs 20.3, there is indeed a @code{repeat} command (@kbd{C-x z})
2155 that repeats the last command. If you preface it with a prefix
2156 argument, the prefix arg is applied to the command.
2157
2158 You can also type @kbd{C-x @key{ESC} @key{ESC}}
2159 (@code{repeat-complex-command}) to reinvoke commands that used the
2160 minibuffer to get arguments. In @code{repeat-complex-command} you can
2161 type @kbd{M-p} and @kbd{M-n} (and also up-arrow and down-arrow, if your
2162 keyboard has these keys) to scan through all the different complex
2163 commands you've typed.
2164
2165 To repeat a set of commands, use keyboard macros. Use @kbd{C-x (} and
2166 @kbd{C-x )} to make a keyboard macro that invokes the command and then
2167 type @kbd{C-x e}. (@inforef{Keyboard Macros, Keyboard Macros, emacs}.)
2168
2169 If you're really desperate for the @code{.} command in @code{vi} that
2170 redoes the last insertion/deletion, use VIPER, a @code{vi} emulation
2171 mode which comes with Emacs, and which appears to support it.
2172
2173 @node Valid X resources, Evaluating Emacs Lisp code, Repeating commands, Common requests
2174 @section What are the valid X resource settings (i.e., stuff in .Xdefaults)?
2175 @cindex Resources, X
2176 @cindex X resources
2177 @cindex Setting X resources
2178
2179 @inforef{X Resources, X Resources, emacs}.
2180
2181 You can also use a resource editor, such as editres (for X11R5 and
2182 onwards), to look at the resource names for the menu bar, assuming Emacs
2183 was compiled with the X toolkit.
2184
2185 @node Evaluating Emacs Lisp code, Changing the length of a Tab, Valid X resources, Common requests
2186 @section How do I execute (``evaluate'') a piece of Emacs Lisp code?
2187 @cindex Evaluating Lisp code
2188 @cindex Lisp forms, evaluating
2189
2190 There are a number of ways to execute (@dfn{evaluate}, in Lisp lingo) an
2191 Emacs Lisp @dfn{form}:
2192
2193 @itemize @bullet
2194
2195 @item
2196 If you want it evaluated every time you run Emacs, put it in a file
2197 named @file{.emacs} in your home directory. This is known as ``your
2198 @file{.emacs} file,'' and contains all of your personal customizations.
2199
2200 @item
2201 You can type the form in the @file{*scratch*} buffer, and then type
2202 @key{LFD} (or @kbd{C-j}) after it. The result of evaluating the form
2203 will be inserted in the buffer.
2204
2205 @item
2206 In @code{emacs-lisp-mode}, typing @kbd{C-M-x} evaluates a top-level form
2207 before or around point.
2208
2209 @item
2210 Typing @kbd{C-x C-e} in any buffer evaluates the Lisp form immediately
2211 before point and prints its value in the echo area.
2212
2213 @item
2214 Typing @kbd{M-:} or @kbd{M-x eval-expression} allows you to type a Lisp
2215 form in the minibuffer which will be evaluated once you press @key{RET}.
2216
2217 @item
2218 You can use @kbd{M-x load-file} to have Emacs evaluate all the Lisp
2219 forms in a file. (To do this from Lisp use the function @code{load}
2220 instead.)
2221
2222 The functions @code{load-library}, @code{eval-region},
2223 @code{eval-buffer}, @code{require}, and @code{autoload} are also
2224 useful; see @ref{Emacs Lisp documentation}, if you want to learn more
2225 about them.
2226
2227 @end itemize
2228
2229 @node Changing the length of a Tab, Inserting text at the beginning of each line, Evaluating Emacs Lisp code, Common requests
2230 @section How do I change Emacs's idea of the @key{TAB} character's length?
2231 @cindex Tab length
2232 @cindex Length of tab character
2233 @cindex @code{default-tab-width}
2234
2235 Set the variable @code{default-tab-width}. For example, to set
2236 @key{TAB} stops every 10 characters, insert the following in your
2237 @file{.emacs} file:
2238
2239 @lisp
2240 (setq default-tab-width 10)
2241 @end lisp
2242
2243 Do not confuse variable @code{tab-width} with variable
2244 @code{tab-stop-list}. The former is used for the display of literal
2245 @key{TAB} characters. The latter controls what characters are inserted
2246 when you press the @key{TAB} character in certain modes.
2247
2248 @node Inserting text at the beginning of each line, Underlining paragraphs, Changing the length of a Tab, Common requests
2249 @section How do I insert <some text> at the beginning of every line?
2250 @cindex Prefixing a region with some text
2251 @cindex Prefix character, inserting in mail/news replies
2252 @cindex Replies to mail/news, inserting a prefix character
2253 @cindex @code{mail-yank-prefix}
2254 @cindex Mail replies, inserting a prefix character
2255 @cindex News replies, inserting a prefix character
2256
2257 To do this to an entire buffer, type @kbd{M-< M-x replace-regexp
2258 @key{RET} ^ @key{RET} your text @key{RET}}.
2259
2260 To do this to a region, use @code{string-insert-rectangle}.
2261 Set the mark (@kbd{C-@key{SPC}}) at the beginning of the first line you
2262 want to prefix, move the cursor to last line to be prefixed, and type
2263 @kbd{M-x string-insert-rectangle @key{RET}}. To do this for the whole
2264 buffer, type @kbd{C-x h M-x string-insert-rectangle @key{RET}}.
2265
2266 If you are trying to prefix a yanked mail message with @samp{>}, you
2267 might want to set the variable @code{mail-yank-prefix}. In Message
2268 buffers, you can even use @kbd{M-;} to cite yanked messages (@kbd{M-;}
2269 runs the function @code{comment-region}, it is a general-purpose
2270 mechanism to comment regions) (@pxref{Changing the included text prefix}).
2271
2272 @node Underlining paragraphs, Forcing the cursor to remain in the same column, Inserting text at the beginning of each line, Common requests
2273 @section How do I insert @samp{_^H} before each character in a region to get an underlined paragraph?
2274 @cindex Underlining a region of text
2275 @cindex @code{underline-region}
2276
2277 Mark the region and then type @kbd{M-x underline-region @key{RET}}.
2278
2279 @node Forcing the cursor to remain in the same column, Forcing Emacs to iconify itself, Underlining paragraphs, Common requests
2280 @section How do I make Emacs behave like this: when I go up or down, the cursor should stay in the same column even if the line is too short?
2281 @cindex @code{picture-mode}
2282 @cindex Remaining in the same column, regardless of contents
2283 @cindex Vertical movement in empty documents
2284
2285 Use @kbd{M-x picture-mode}.
2286
2287 See also the variable @code{track-eol} and the command
2288 @code{set-goal-column} bound to @kbd{C-x C-n}
2289 (@pxref{Moving Point, , , emacs, The GNU Emacs Manual}).
2290
2291 @node Forcing Emacs to iconify itself, Using regular expressions, Forcing the cursor to remain in the same column, Common requests
2292 @section How do I tell Emacs to iconify itself?
2293 @cindex Iconification under the X Window System
2294 @cindex X Window System and iconification
2295 @cindex Suspending Emacs
2296
2297 @kbd{C-z} iconifies Emacs when running under X and suspends Emacs
2298 otherwise. @inforef{Frame Commands, Frame Commands, emacs}.
2299
2300 @node Using regular expressions, Replacing text across multiple files, Forcing Emacs to iconify itself, Common requests
2301 @section How do I use regexps (regular expressions) in Emacs?
2302 @cindex Regexps
2303 @cindex Regular expressions
2304 @cindex Differences between Unix and Emacs regexps
2305 @cindex Unix regexps, differences from Emacs
2306 @cindex Text strings, putting regexps in
2307
2308 @inforef{Regexp Backslash, Regexp Backslash, emacs}.
2309
2310 The @code{or} operator is @samp{\|}, not @samp{|}, and the grouping operators
2311 are @samp{\(} and @samp{\)}. Also, the string syntax for a backslash is
2312 @samp{\\}. To specify a regular expression like @samp{xxx\(foo\|bar\)}
2313 in a Lisp string, use @samp{xxx\\(foo\\|bar\\)}.
2314
2315 Note the doubled backslashes!
2316
2317 @itemize @bullet
2318
2319 @item
2320 Unlike in Unix @file{grep}, @file{sed}, etc., a complement character set
2321 (@samp{[^...]}) can match a newline character (@key{LFD} a.k.a.@:
2322 @kbd{C-j} a.k.a.@: @samp{\n}), unless newline is mentioned as one of the
2323 characters not to match.
2324
2325 @item
2326 The character syntax regexps (e.g., @samp{\sw}) are not
2327 meaningful inside character set regexps (e.g., @samp{[aeiou]}). (This
2328 is actually typical for regexp syntax.)
2329
2330 @end itemize
2331
2332 @node Replacing text across multiple files, Documentation for etags, Using regular expressions, Common requests
2333 @section How do I perform a replace operation across more than one file?
2334 @cindex Replacing strings across files
2335 @cindex Multiple files, replacing across
2336 @cindex Files, replacing strings across multiple
2337 @cindex Recursive search/replace operations
2338
2339 As of Emacs 19.29, Dired mode (@kbd{M-x dired @key{RET}}, or @kbd{C-x
2340 d}) supports the command @code{dired-do-query-replace} (@kbd{Q}), which
2341 allows users to replace regular expressions in multiple files.
2342
2343 You can use this command to perform search/replace operations on
2344 multiple files by following the following steps:
2345
2346 @itemize @bullet
2347 @item
2348 Assemble a list of files you want to operate on with either
2349 @code{find-dired}, @code{find-name-dired} or @code{find-grep-dired}.
2350
2351 @item
2352 Mark all files in the resulting Dired buffer using @kbd{t}.
2353
2354 @item
2355 Use @kbd{Q} to start a @code{query-replace-regexp} session on the marked
2356 files.
2357
2358 @item
2359 To accept all replacements in each file, hit @kbd{!}.
2360 @end itemize
2361
2362 Another way to do the same thing is to use the ``tags'' feature of
2363 Emacs: it includes the command @code{tags-query-replace} which performs
2364 a query-replace across all the files mentioned in the @file{TAGS} file.
2365 @inforef{Tags Search, Tags Search, emacs}.
2366
2367 @node Documentation for etags, Disabling backups, Replacing text across multiple files, Common requests
2368 @section Where is the documentation for @code{etags}?
2369 @cindex Documentation for @code{etags}
2370 @cindex @code{etags}, documentation for
2371
2372 The @code{etags} man page should be in the same place as the
2373 @code{emacs} man page.
2374
2375 Quick command-line switch descriptions are also available. For example,
2376 @samp{etags -H}.
2377
2378 @node Disabling backups, Disabling auto-save-mode, Documentation for etags, Common requests
2379 @section How do I disable backup files?
2380 @cindex Backups, disabling
2381 @cindex Disabling backups
2382
2383 You probably don't want to do this, since backups are useful, especially
2384 when something goes wrong.
2385
2386 To avoid seeing backup files (and other ``uninteresting'' files) in Dired,
2387 load @code{dired-x} by adding the following to your @file{.emacs} file:
2388
2389 @lisp
2390 (add-hook 'dired-load-hook
2391 (lambda ()
2392 (load "dired-x")))
2393 @end lisp
2394
2395 With @code{dired-x} loaded, @kbd{M-o} toggles omitting in each dired buffer.
2396 You can make omitting the default for new dired buffers by putting the
2397 following in your @file{.emacs}:
2398
2399 @lisp
2400 (add-hook 'dired-mode-hook 'dired-omit-toggle)
2401 @end lisp
2402
2403 If you're tired of seeing backup files whenever you do an @samp{ls} at
2404 the Unix shell, try GNU @code{ls} with the @samp{-B} option. GNU
2405 @code{ls} is part of the GNU Fileutils package, available from
2406 @samp{ftp.gnu.org} and its mirrors (@pxref{Current GNU distributions}).
2407
2408 To disable or change the way backups are made, @inforef{Backup Names, ,
2409 emacs}.
2410
2411 @cindex Backup files in a single directory
2412 Beginning with Emacs 21.1, you can control where Emacs puts backup files
2413 by customizing the variable @code{backup-directory-alist}. This
2414 variable's value specifies that files whose names match specific patters
2415 should have their backups put in certain directories. A typical use is
2416 to add the element @code{("." . @var{dir})} to force Emacs to put
2417 @strong{all} backup files in the directory @file{dir}.
2418
2419 @node Disabling auto-save-mode, Going to a line by number, Disabling backups, Common requests
2420 @section How do I disable @code{auto-save-mode}?
2421 @cindex Disabling @code{auto-save-mode}
2422 @cindex Auto-saving
2423 @cindex Saving at frequent intervals
2424
2425 You probably don't want to do this, since auto-saving is useful,
2426 especially when Emacs or your computer crashes while you are editing a
2427 document.
2428
2429 Instead, you might want to change the variable
2430 @code{auto-save-interval}, which specifies how many keystrokes Emacs
2431 waits before auto-saving. Increasing this value forces Emacs to wait
2432 longer between auto-saves, which might annoy you less.
2433
2434 You might also want to look into Sebastian Kremer's @code{auto-save}
2435 package (@pxref{Packages that do not come with Emacs}). This
2436 package also allows you to place all auto-save files in one directory,
2437 such as @file{/tmp}.
2438
2439 To disable or change how @code{auto-save-mode} works, @inforef{Auto
2440 Save, , emacs}.
2441
2442 @node Going to a line by number, Modifying pull-down menus, Disabling auto-save-mode, Common requests
2443 @section How can I go to a certain line given its number?
2444 @cindex Going to a line by number
2445 @cindex Compilation error messages
2446 @cindex Recompilation
2447
2448 Are you sure you indeed need to go to a line by its number? Perhaps all
2449 you want is to display a line in your source file for which a compiler
2450 printed an error message? If so, compiling from within Emacs using the
2451 @kbd{M-x compile} and @kbd{M-x recompile} commands is a much more
2452 effective way of doing that. Emacs automatically intercepts the compile
2453 error messages, inserts them into a special buffer called
2454 @code{*compilation*}, and lets you visit the locus of each message in
2455 the source. Type @kbd{C-x `} to step through the offending lines one by
2456 one (starting with Emacs 22, you can also use @kbd{M-g M-p} and
2457 @kbd{M-g M-n} to go to the previous and next matches directly). Click
2458 @kbd{Mouse-2} or press @key{RET} on a message text in the
2459 @code{*compilation*} buffer to go to the line whose number is mentioned
2460 in that message.
2461
2462 But if you indeed need to go to a certain text line, type @kbd{M-g M-g}
2463 (which is the default binding of the @code{goto-line} function starting
2464 with Emacs 22). Emacs will prompt you for the number of the line and go
2465 to that line.
2466
2467 You can do this faster by invoking @code{goto-line} with a numeric
2468 argument that is the line's number. For example, @kbd{C-u 286 M-g M-g}
2469 will jump to line number 286 in the current buffer.
2470
2471 @node Modifying pull-down menus, Deleting menus and menu options, Going to a line by number, Common requests
2472 @section How can I create or modify new pull-down menu options?
2473 @cindex Pull-down menus, creating or modifying
2474 @cindex Menus, creating or modifying
2475 @cindex Creating new menu options
2476 @cindex Modifying pull-down menus
2477 @cindex Menus and keymaps
2478 @cindex Keymaps and menus
2479
2480 Each menu title (e.g., @samp{File}, @samp{Edit}, @samp{Buffers})
2481 represents a local or global keymap. Selecting a menu title with the
2482 mouse displays that keymap's non-@code{nil} contents in the form of a menu.
2483
2484 So to add a menu option to an existing menu, all you have to do is add a
2485 new definition to the appropriate keymap. Adding a @samp{Forward Word}
2486 item to the @samp{Edit} menu thus requires the following Lisp code:
2487
2488 @lisp
2489 (define-key global-map
2490 [menu-bar edit forward]
2491 '("Forward word" . forward-word))
2492 @end lisp
2493
2494 @noindent
2495 The first line adds the entry to the global keymap, which includes
2496 global menu bar entries. Replacing the reference to @code{global-map}
2497 with a local keymap would add this menu option only within a particular
2498 mode.
2499
2500 The second line describes the path from the menu-bar to the new entry.
2501 Placing this menu entry underneath the @samp{File} menu would mean
2502 changing the word @code{edit} in the second line to @code{file}.
2503
2504 The third line is a cons cell whose first element is the title that will
2505 be displayed, and whose second element is the function that will be
2506 called when that menu option is invoked.
2507
2508 To add a new menu, rather than a new option to an existing menu, we must
2509 define an entirely new keymap:
2510
2511 @lisp
2512 (define-key global-map [menu-bar words]
2513 (cons "Words" (make-sparse-keymap "Words")))
2514 @end lisp
2515
2516 The above code creates a new sparse keymap, gives it the name
2517 @samp{Words}, and attaches it to the global menu bar. Adding the
2518 @samp{Forward Word} item to this new menu would thus require the
2519 following code:
2520
2521 @lisp
2522 (define-key global-map
2523 [menu-bar words forward]
2524 '("Forward word" . forward-word))
2525 @end lisp
2526
2527 @noindent
2528 Note that because of the way keymaps work, menu options are displayed
2529 with the more recently defined items at the top. Thus if you were to
2530 define menu options @samp{foo}, @samp{bar}, and @samp{baz} (in that
2531 order), the menu option @samp{baz} would appear at the top, and
2532 @samp{foo} would be at the bottom.
2533
2534 One way to avoid this problem is to use the function @code{define-key-after},
2535 which works the same as @code{define-key}, but lets you modify where items
2536 appear. The following Lisp code would insert the @samp{Forward Word}
2537 item in the @samp{Edit} menu immediately following the @samp{Undo} item:
2538
2539 @lisp
2540 (define-key-after
2541 (lookup-key global-map [menu-bar edit])
2542 [forward]
2543 '("Forward word" . forward-word)
2544 'undo)
2545 @end lisp
2546
2547 Note how the second and third arguments to @code{define-key-after} are
2548 different from those of @code{define-key}, and that we have added a new
2549 (final) argument, the function after which our new key should be
2550 defined.
2551
2552 To move a menu option from one position to another, simply evaluate
2553 @code{define-key-after} with the appropriate final argument.
2554
2555 More detailed information---and more examples of how to create and
2556 modify menu options---are in the @cite{Emacs Lisp Reference Manual}, under
2557 ``Menu Keymaps.'' (@xref{Emacs Lisp documentation}, for information on
2558 this manual.)
2559
2560 @node Deleting menus and menu options, Turning on syntax highlighting, Modifying pull-down menus, Common requests
2561 @section How do I delete menus and menu options?
2562 @cindex Deleting menus and menu options
2563 @cindex Menus, deleting
2564
2565 The simplest way to remove a menu is to set its keymap to @samp{nil}.
2566 For example, to delete the @samp{Words} menu (@pxref{Modifying pull-down
2567 menus}), use:
2568
2569 @lisp
2570 (define-key global-map [menu-bar words] nil)
2571 @end lisp
2572
2573 Similarly, removing a menu option requires redefining a keymap entry to
2574 @code{nil}. For example, to delete the @samp{Forward word} menu option
2575 from the @samp{Edit} menu (we added it in @ref{Modifying pull-down
2576 menus}), use:
2577
2578 @lisp
2579 (define-key global-map [menu-bar edit forward] nil)
2580 @end lisp
2581
2582 @node Turning on syntax highlighting, Scrolling only one line, Deleting menus and menu options, Common requests
2583 @section How do I turn on syntax highlighting?
2584 @cindex Syntax highlighting
2585 @cindex @code{font-lock-mode}
2586 @cindex Highlighting based on syntax
2587 @cindex Colorizing text
2588 @cindex FAQ, @code{font-lock-mode}
2589
2590 @code{font-lock-mode} is the standard way to have Emacs perform syntax
2591 highlighting in the current buffer. It is enabled by default in Emacs
2592 22.1 and later.
2593
2594 With @code{font-lock-mode} turned on, different types of text will
2595 appear in different colors. For instance, in a programming mode,
2596 variables will appear in one face, keywords in a second, and comments in
2597 a third.
2598
2599 @cindex hilit19 is deprecated
2600 Earlier versions of Emacs supported hilit19, a similar package. Use of
2601 hilit19 is now considered non-standard, although @file{hilit19.el} comes
2602 with the stock Emacs distribution. It is no longer maintained.
2603
2604 To turn @code{font-lock-mode} off within an existing buffer, use
2605 @kbd{M-x font-lock-mode @key{RET}}.
2606
2607 In Emacs 21 and earlier versions, you could use the following code in
2608 your @file{.emacs} file to turn on @code{font-lock-mode} globally:
2609
2610 @lisp
2611 (global-font-lock-mode 1)
2612 @end lisp
2613
2614 Highlighting a buffer with @code{font-lock-mode} can take quite a while,
2615 and cause an annoying delay in display, so several features exist to
2616 work around this.
2617
2618 @cindex Just-In-Time syntax highlighting
2619 In Emacs 21 and later, turning on @code{font-lock-mode} automatically
2620 activates the new @dfn{Just-In-Time fontification} provided by
2621 @code{jit-lock-mode}. @code{jit-lock-mode} defers the fontification of
2622 portions of buffer until you actually need to see them, and can also
2623 fontify while Emacs is idle. This makes display of the visible portion
2624 of a buffer almost instantaneous. For details about customizing
2625 @code{jit-lock-mode}, type @kbd{C-h f jit-lock-mode @key{RET}}.
2626
2627 @cindex Levels of syntax highlighting
2628 @cindex Decoration level, in @code{font-lock-mode}
2629 In versions of Emacs before 21, different levels of decoration are
2630 available, from slight to gaudy. More decoration means you need to wait
2631 more time for a buffer to be fontified (or a faster machine). To
2632 control how decorated your buffers should become, set the value of
2633 @code{font-lock-maximum-decoration} in your @file{.emacs} file, with a
2634 @code{nil} value indicating default (usually minimum) decoration, and a
2635 @code{t} value indicating the maximum decoration. For the gaudiest
2636 possible look, then, include the line
2637
2638 @lisp
2639 (setq font-lock-maximum-decoration t)
2640 @end lisp
2641
2642 @noindent
2643 in your @file{.emacs} file. You can also set this variable such that
2644 different modes are highlighted in a different ways; for more
2645 information, see the documentation for
2646 @code{font-lock-maximum-decoration} with @kbd{C-h v} (or @kbd{M-x
2647 describe-variable @key{RET}}).
2648
2649 Also see the documentation for the function @code{font-lock-mode},
2650 available by typing @kbd{C-h f font-lock-mode} (@kbd{M-x
2651 describe-function @key{RET} font-lock-mode @key{RET}}).
2652
2653 To print buffers with the faces (i.e., colors and fonts) intact, use
2654 @kbd{M-x ps-print-buffer-with-faces} or @kbd{M-x
2655 ps-print-region-with-faces}. You will need a way to send text to a
2656 PostScript printer, or a PostScript interpreter such as Ghostscript;
2657 consult the documentation of the variables @code{ps-printer-name},
2658 @code{ps-lpr-command}, and @code{ps-lpr-switches} for more details.
2659
2660 @node Scrolling only one line, Editing MS-DOS files, Turning on syntax highlighting, Common requests
2661 @section How can I force Emacs to scroll only one line when I move past the bottom of the screen?
2662 @cindex Scrolling only one line
2663 @cindex Reducing the increment when scrolling
2664
2665 Customize the @code{scroll-conservatively} variable with @kbd{M-x
2666 customize-variable @key{RET} scroll-conservatively @key{RET}} and set it
2667 to a large value like, say, 10000. For an explanation of what this
2668 means, @inforef{Auto Scrolling, Auto Scrolling, emacs}.
2669
2670 Alternatively, use the following Lisp form in your @file{.emacs}:
2671
2672 @lisp
2673 (setq scroll-conservatively most-positive-fixnum)
2674 @end lisp
2675
2676 @node Editing MS-DOS files, Filling paragraphs with a single space, Scrolling only one line, Common requests
2677 @section How can I edit MS-DOS files using Emacs?
2678 @cindex Editing MS-DOS files
2679 @cindex MS-DOS files, editing
2680 @cindex Microsoft files, editing
2681 @cindex Windows files, editing
2682
2683 As of Emacs 20, detection and handling of MS-DOS (and Windows) files is
2684 performed transparently. You can open MS-DOS files on a Unix system,
2685 edit it, and save it without having to worry about the file format.
2686
2687 When editing an MS-DOS style file, the mode line will indicate that it
2688 is a DOS file. On Unix and GNU/Linux systems, and also on a Macintosh,
2689 the string @samp{(DOS)} will appear near the left edge of the mode line;
2690 on DOS and Windows, where the DOS end-of-line (EOL) format is the
2691 default, a backslash (@samp{\}) will appear in the mode line.
2692
2693 If you are running a version of Emacs before 20.1, get @code{crypt++}
2694 (@pxref{Packages that do not come with Emacs}). Among other things,
2695 @code{crypt++} transparently modifies MS-DOS files as they are loaded
2696 and saved, allowing you to ignore the different conventions that Unix
2697 and MS-DOS have for delineating the end of a line.
2698
2699 @node Filling paragraphs with a single space, Escape sequences in shell output, Editing MS-DOS files, Common requests
2700 @section How can I tell Emacs to fill paragraphs with a single space after each period?
2701 @cindex One space following periods
2702 @cindex Single space following periods
2703 @cindex Periods, one space following
2704
2705 Add the following line to your @file{.emacs} file:
2706
2707 @lisp
2708 (setq sentence-end-double-space nil)
2709 @end lisp
2710
2711 @node Escape sequences in shell output, Fullscreen mode on MS-Windows, Filling paragraphs with a single space, Common requests
2712 @section Why these strange escape sequences from @code{ls} from the Shell mode?
2713 @cindex Escape sequences in @code{ls} output
2714 @cindex @code{ls} in Shell mode
2715
2716 This happens because @code{ls} is aliased to @samp{ls --color} in your
2717 shell init file. You have two alternatives to solve this:
2718
2719 @itemize @bullet
2720 @item
2721 Make the alias conditioned on the @code{EMACS} variable in the
2722 environment. When Emacs runs a subsidiary shell, it exports the
2723 @code{EMACS} variable to that shell, with value equal to the absolute
2724 file name of Emacs. You can
2725 unalias @code{ls} when that happens, thus limiting the alias to your
2726 interactive sessions.
2727
2728 @item
2729 Install the @code{ansi-color} package (bundled with Emacs 21.1 and
2730 later), which converts these ANSI escape sequences into colors.
2731 @end itemize
2732
2733 @node Fullscreen mode on MS-Windows, , Escape sequences in shell output, Common requests
2734 @section How can I start Emacs in fullscreen mode on MS-Windows?
2735 @cindex Maximize frame
2736 @cindex Fullscreen mode
2737
2738 Use the function @code{w32-send-sys-command}. For example, you can
2739 put the following in your @file{.emacs} file:
2740
2741 @lisp
2742 (add-hook 'term-setup-hook
2743 #'(lambda () (w32-send-sys-command ?\xF030)))
2744 @end lisp
2745
2746 To avoid the slightly distracting visual effect of Emacs starting with
2747 its default frame size and then growing to fullscreen, you can add an
2748 @samp{Emacs.Geometry} entry to the Windows registry settings (see
2749 @pxref{(emacs)X Resources}).
2750
2751 To compute the correct values for width and height, first maximize the
2752 Emacs frame and then evaluate @code{(frame-height)} and
2753 @code{(frame-width)} with @kbd{M-:}.
2754
2755 @c ------------------------------------------------------------
2756 @node Bugs and problems, Compiling and installing Emacs, Common requests, Top
2757 @chapter Bugs and problems
2758 @cindex Bugs and problems
2759
2760 The Emacs manual lists some common kinds of trouble users could get
2761 into, see @ref{Lossage, , Dealing with Emacs Trouble, emacs, The GNU
2762 Emacs Manual}, so you might look there if the problem you encounter
2763 isn't described in this chapter. If you decide you've discovered a bug,
2764 see @ref{Bugs, , Reporting Bugs, emacs, The GNU Emacs Manual}, for
2765 instructions how to do that.
2766
2767 The file @file{etc/PROBLEMS} in the Emacs distribution lists various
2768 known problems with building and using Emacs on specific platforms;
2769 type @kbd{C-h C-e} to read it.
2770
2771 @menu
2772 * Problems with very large files::
2773 * ^M in the shell buffer::
2774 * Shell process exits abnormally::
2775 * Problems with Shell Mode on MS-Windows::
2776 * Termcap/Terminfo entries for Emacs::
2777 * Spontaneous entry into isearch-mode::
2778 * Problems talking to certain hosts::
2779 * Errors with init files::
2780 * Emacs ignores X resources::
2781 * Emacs ignores frame parameters::
2782 * Emacs takes a long time to visit files::
2783 * Editing files with $ in the name::
2784 * Shell mode loses the current directory::
2785 * Security risks with Emacs::
2786 * Dired claims that no file is on this line::
2787 @end menu
2788
2789 @node Problems with very large files, ^M in the shell buffer, Bugs and problems, Bugs and problems
2790 @section Does Emacs have problems with files larger than 8 megabytes?
2791 @cindex Very large files, opening
2792 @cindex Large files, opening
2793 @cindex Opening very large files
2794 @cindex Maximum file size
2795 @cindex Files, maximum size
2796
2797 Old versions (i.e., anything before 19.29) of Emacs had problems editing
2798 files larger than 8 megabytes. In versions 19.29 and later, the maximum
2799 buffer size is at least 2^27-1, or 134,217,727 bytes, or 132 MBytes.
2800 And in Emacs 22, the maximum buffer size has been increased to
2801 268,435,455 bytes (or 256 MBytes) on 32-bit machines.
2802
2803 @node ^M in the shell buffer, Shell process exits abnormally, Problems with very large files, Bugs and problems
2804 @section How do I get rid of @samp{^M} or echoed commands in my shell buffer?
2805 @cindex Shell buffer, echoed commands and @samp{^M} in
2806 @cindex Echoed commands in @code{shell-mode}
2807
2808 Try typing @kbd{M-x shell-strip-ctrl-m @key{RET}} while in @code{shell-mode} to
2809 make them go away. If that doesn't work, you have several options:
2810
2811 For @code{tcsh}, put this in your @file{.cshrc} (or @file{.tcshrc})
2812 file:
2813
2814 @example
2815 if ($?EMACS) then
2816 if ("$EMACS" =~ /*) then
2817 if ($?tcsh) unset edit
2818 stty nl
2819 endif
2820 endif
2821 @end example
2822
2823 Or put this in your @file{.emacs_tcsh} or @file{~/.emacs.d/init_tcsh.sh} file:
2824
2825 @example
2826 unset edit
2827 stty nl
2828 @end example
2829
2830 Alternatively, use @code{csh} in your shell buffers instead of
2831 @code{tcsh}. One way is:
2832
2833 @lisp
2834 (setq explicit-shell-file-name "/bin/csh")
2835 @end lisp
2836
2837 @noindent
2838 and another is to do this in your @file{.cshrc} (or @file{.tcshrc})
2839 file:
2840
2841 @example
2842 setenv ESHELL /bin/csh
2843 @end example
2844
2845 @noindent
2846 (You must start Emacs over again with the environment variable properly
2847 set for this to take effect.)
2848
2849 You can also set the @code{ESHELL} environment variable in Emacs Lisp
2850 with the following Lisp form,
2851
2852 @lisp
2853 (setenv "ESHELL" "/bin/csh")
2854 @end lisp
2855
2856 The above solutions try to prevent the shell from producing the
2857 @samp{^M} characters in the first place. If this is not possible
2858 (e.g., if you use a Windows shell), you can get Emacs to remove these
2859 characters from the buffer by adding this to your @file{.emacs} init
2860 file:
2861
2862 @smalllisp
2863 (add-hook 'comint-output-filter-functions 'shell-strip-ctrl-m)
2864 @end smalllisp
2865
2866 On a related note: if your shell is echoing your input line in the shell
2867 buffer, you might want to customize the @code{comint-process-echoes}
2868 variable in your shell buffers, or try the following command in your
2869 shell start-up file:
2870
2871 @example
2872 stty -icrnl -onlcr -echo susp ^Z
2873 @end example
2874
2875 @node Shell process exits abnormally, Problems with Shell Mode on MS-Windows, ^M in the shell buffer, Bugs and problems
2876 @section Why do I get ``Process shell exited abnormally with code 1''?
2877 @cindex Abnormal exits from @code{shell-mode}
2878 @cindex @code{shell-mode} exits
2879 @cindex Process shell exited
2880
2881 The most likely reason for this message is that the @samp{env} program
2882 is not properly installed. Compile this program for your architecture,
2883 and install it with @samp{a+x} permission in the architecture-dependent
2884 Emacs program directory. (You can find what this directory is at your
2885 site by inspecting the value of the variable @code{exec-directory} by
2886 typing @kbd{C-h v exec-directory @key{RET}}.)
2887
2888 You should also check for other programs named @samp{env} in your path
2889 (e.g., SunOS has a program named @file{/usr/bin/env}). We don't
2890 understand why this can cause a failure and don't know a general
2891 solution for working around the problem in this case.
2892
2893 The @samp{make clean} command will remove @samp{env} and other vital
2894 programs, so be careful when using it.
2895
2896 It has been reported that this sometimes happened when Emacs was started
2897 as an X client from an xterm window (i.e., had a controlling tty) but the
2898 xterm was later terminated.
2899
2900 See also @samp{PROBLEMS} (in the @file{etc} subdirectory of the
2901 top-level directory when you unpack the Emacs source) for other
2902 possible causes of this message.
2903
2904 @node Problems with Shell Mode on MS-Windows, Termcap/Terminfo entries for Emacs, Shell process exits abnormally, Bugs and problems
2905 @section Why do I get an error message when I try to run @kbd{M-x shell}?
2906
2907 @cindex Shell Mode, and MS-Windows
2908 @cindex @code{explicit-shell-file-name}
2909 On MS-Windows, this might happen because Emacs tries to look for the
2910 shell in a wrong place. The default file name @file{/bin/sh} is
2911 usually incorrect for non-Unix systems. If you know where your shell
2912 executable is, set the variable @code{explicit-shell-file-name} in
2913 your @file{.emacs} file to point to its full file name, like this:
2914
2915 @lisp
2916 (setq explicit-shell-file-name "d:/shells/bash.exe")
2917 @end lisp
2918
2919 If you don't know what shell does Emacs use, try the @kbd{M-!}
2920 command; if that works, put the following line into your
2921 @file{.emacs}:
2922
2923 @lisp
2924 (setq explicit-shell-file-name shell-file-name)
2925 @end lisp
2926
2927 @cindex Antivirus programs, and Shell Mode
2928 Some people have trouble with Shell Mode because of intrusive
2929 antivirus software; disabling the resident antivirus program solves
2930 the problems in those cases.
2931
2932 @node Termcap/Terminfo entries for Emacs, Spontaneous entry into isearch-mode, Problems with Shell Mode on MS-Windows, Bugs and problems
2933 @section Where is the termcap/terminfo entry for terminal type @samp{emacs}?
2934 @cindex Termcap
2935 @cindex Terminfo
2936 @cindex Emacs entries for termcap/terminfo
2937
2938 The termcap entry for terminal type @samp{emacs} is ordinarily put in
2939 the @samp{TERMCAP} environment variable of subshells. It may help in
2940 certain situations (e.g., using rlogin from shell buffer) to add an
2941 entry for @samp{emacs} to the system-wide termcap file. Here is a
2942 correct termcap entry for @samp{emacs}:
2943
2944 @example
2945 emacs:tc=unknown:
2946 @end example
2947
2948 To make a terminfo entry for @samp{emacs}, use @code{tic} or
2949 @code{captoinfo}. You need to generate
2950 @file{/usr/lib/terminfo/e/emacs}. It may work to simply copy
2951 @file{/usr/lib/terminfo/d/dumb} to @file{/usr/lib/terminfo/e/emacs}.
2952
2953 Having a termcap/terminfo entry will not enable the use of full screen
2954 programs in shell buffers. Use @kbd{M-x terminal-emulator} for that
2955 instead.
2956
2957 A workaround to the problem of missing termcap/terminfo entries is to
2958 change terminal type @samp{emacs} to type @samp{dumb} or @samp{unknown}
2959 in your shell start up file. @code{csh} users could put this in their
2960 @file{.cshrc} files:
2961
2962 @example
2963 if ("$term" == emacs) set term=dumb
2964 @end example
2965
2966 @node Spontaneous entry into isearch-mode, Problems talking to certain hosts, Termcap/Terminfo entries for Emacs, Bugs and problems
2967 @section Why does Emacs spontaneously start displaying @samp{I-search:} and beeping?
2968 @cindex Spontaneous entry into isearch-mode
2969 @cindex isearch-mode, spontaneous entry into
2970 @cindex Beeping without obvious reason
2971
2972 Your terminal (or something between your terminal and the computer) is
2973 sending @kbd{C-s} and @kbd{C-q} for flow control, and Emacs is receiving
2974 these characters and interpreting them as commands. (The @kbd{C-s}
2975 character normally invokes the @code{isearch-forward} command.) For
2976 possible solutions, see @ref{Handling C-s and C-q with flow control}.
2977
2978 @node Problems talking to certain hosts, Errors with init files, Spontaneous entry into isearch-mode, Bugs and problems
2979 @section Why can't Emacs talk to certain hosts (or certain hostnames)?
2980 @cindex Hosts, Emacs cannot talk to
2981 @cindex @code{gethostbyname}, problematic version
2982
2983 The problem may be that Emacs is linked with a wimpier version of
2984 @code{gethostbyname} than the rest of the programs on the machine. This
2985 is often manifested as a message on startup of ``X server not responding.
2986 Check your @samp{DISPLAY} environment variable.'' or a message of
2987 ``Unknown host'' from @code{open-network-stream}.
2988
2989 On a Sun, this may be because Emacs had to be linked with the static C
2990 library. The version of @code{gethostbyname} in the static C library
2991 may only look in @file{/etc/hosts} and the NIS (YP) maps, while the
2992 version in the dynamic C library may be smart enough to check DNS in
2993 addition to or instead of NIS. On a Motorola Delta running System V
2994 R3.6, the version of @code{gethostbyname} in the standard library works,
2995 but the one that works with NIS doesn't (the one you get with -linet).
2996 Other operating systems have similar problems.
2997
2998 Try these options:
2999
3000 @itemize @bullet
3001
3002 @item
3003 Explicitly add the host you want to communicate with to @file{/etc/hosts}.
3004
3005 @item
3006 Relink Emacs with this line in @file{src/config.h}:
3007
3008 @example
3009 #define LIBS_SYSTEM -lresolv
3010 @end example
3011
3012 @item
3013 Replace @code{gethostbyname} and friends in @file{libc.a} with more
3014 useful versions such as the ones in @file{libresolv.a}. Then relink
3015 Emacs.
3016
3017 @item
3018 If you are actually running NIS, make sure that @code{ypbind} is
3019 properly told to do DNS lookups with the correct command line switch.
3020
3021 @end itemize
3022
3023 @node Errors with init files, Emacs ignores X resources, Problems talking to certain hosts, Bugs and problems
3024 @section Why does Emacs say @samp{Error in init file}?
3025 @cindex Error in @file{.emacs}
3026 @cindex Error in init file
3027 @cindex Init file, errors in
3028 @cindex @file{.emacs} file, errors in
3029 @cindex Debugging @file{.emacs} file
3030
3031 An error occurred while loading either your @file{.emacs} file or the
3032 system-wide file @file{lisp/default.el}. Emacs 21.1 and later pops the
3033 @file{*Messages*} buffer, and puts there some additional information
3034 about the error, to provide some hints for debugging.
3035
3036 For information on how to debug your @file{.emacs} file, see
3037 @ref{Debugging a customization file}.
3038
3039 It may be the case that you need to load some package first, or use a
3040 hook that will be evaluated after the package is loaded. A common case
3041 of this is explained in @ref{Terminal setup code works after Emacs has
3042 begun}.
3043
3044 @node Emacs ignores X resources, Emacs ignores frame parameters, Errors with init files, Bugs and problems
3045 @section Why does Emacs ignore my X resources (my .Xdefaults file)?
3046 @cindex X resources being ignored
3047 @cindex Ignored X resources
3048 @cindex @file{.Xdefaults}
3049
3050 As of version 19, Emacs searches for X resources in the files specified
3051 by the following environment variables:
3052
3053 @itemize @bullet
3054
3055 @item @code{XFILESEARCHPATH}
3056 @item @code{XUSERFILESEARCHPATH}
3057 @item @code{XAPPLRESDIR}
3058
3059 @end itemize
3060
3061 This emulates the functionality provided by programs written using the
3062 Xt toolkit.
3063
3064 @code{XFILESEARCHPATH} and @code{XUSERFILESEARCHPATH} should be a list
3065 of file names separated by colons. @code{XAPPLRESDIR} should be a list
3066 of directory names separated by colons.
3067
3068 Emacs searches for X resources:
3069
3070 @enumerate
3071
3072 @item
3073 specified on the command line, with the @samp{-xrm RESOURCESTRING} option,
3074
3075 @item
3076 then in the value of the @samp{XENVIRONMENT} environment variable,
3077
3078 @itemize @minus
3079
3080 @item
3081 or if that is unset, in the file named
3082 @file{~/.Xdefaults-@var{hostname}} if it exists (where @var{hostname} is
3083 the name of the machine Emacs is running on),
3084
3085 @end itemize
3086
3087 @item
3088 then in the screen-specific and server-wide resource properties provided
3089 by the server,
3090
3091 @itemize @minus
3092
3093 @item
3094 or if those properties are unset, in the file named @file{~/.Xdefaults}
3095 if it exists,
3096
3097 @end itemize
3098
3099 @item
3100 then in the files listed in @samp{XUSERFILESEARCHPATH},
3101
3102 @itemize @minus
3103
3104 @item
3105 or in files named @file{@var{lang}/Emacs} in directories listed in
3106 @samp{XAPPLRESDIR} (where @var{lang} is the value of the @code{LANG}
3107 environment variable), if the @samp{LANG} environment variable is set,
3108 @item
3109 or in files named Emacs in the directories listed in @samp{XAPPLRESDIR}
3110 @item
3111 or in @file{~/@var{lang}/Emacs} (if the @code{LANG} environment variable
3112 is set),
3113 @item
3114 or in @file{~/Emacs},
3115
3116 @end itemize
3117
3118 @item
3119 then in the files listed in @code{XFILESEARCHPATH}.
3120
3121 @end enumerate
3122
3123 @node Emacs ignores frame parameters, Emacs takes a long time to visit files, Emacs ignores X resources, Bugs and problems
3124 @section Why don't my customizations of the frame parameters work?
3125 @cindex Frame parameters
3126
3127 This probably happens because you have set the frame parameters in the
3128 variable @code{initial-frame-alist}. That variable holds parameters
3129 used only for the first frame created when Emacs starts. To customize
3130 the parameters of all frames, change the variable
3131 @code{default-frame-alist} instead.
3132
3133 These two variables exist because many users customize the initial frame
3134 in a special way. For example, you could determine the position and
3135 size of the initial frame, but would like to control the geometry of the
3136 other frames by individually positioning each one of them.
3137
3138
3139 @node Emacs takes a long time to visit files, Editing files with $ in the name, Emacs ignores frame parameters, Bugs and problems
3140 @section Why does Emacs take 20 seconds to visit a file?
3141 @cindex Visiting files takes a long time
3142 @cindex Delay when visiting files
3143 @cindex Files, take a long time to visit
3144
3145 Old versions of Emacs (i.e., versions before Emacs 20.x) often
3146 encountered this when the master lock file, @file{!!!SuperLock!!!}, has
3147 been left in the lock directory somehow. Delete it.
3148
3149 @email{meuer@@geom.umn.edu, Mark Meuer} says that NeXT NFS has a bug
3150 where an exclusive create succeeds but returns an error status. This
3151 can cause the same problem. Since Emacs's file locking doesn't work
3152 over NFS anyway, the best solution is to recompile Emacs with
3153 @code{CLASH_DETECTION} undefined.
3154
3155 @node Editing files with $ in the name, Shell mode loses the current directory, Emacs takes a long time to visit files, Bugs and problems
3156 @section How do I edit a file with a @samp{$} in its name?
3157 @cindex Editing files with @samp{$} in the name
3158 @cindex @samp{$} in file names
3159 @cindex File names containing @samp{$}, editing
3160
3161 When entering a file name in the minibuffer, Emacs will attempt to expand
3162 a @samp{$} followed by a word as an environment variable. To suppress
3163 this behavior, type @kbd{$$} instead.
3164
3165 @node Shell mode loses the current directory, Security risks with Emacs, Editing files with $ in the name, Bugs and problems
3166 @section Why does shell mode lose track of the shell's current directory?
3167 @cindex Current directory and @code{shell-mode}
3168 @cindex @code{shell-mode} and current directory
3169 @cindex Directory, current in @code{shell-mode}
3170
3171 Emacs has no way of knowing when the shell actually changes its
3172 directory. This is an intrinsic limitation of Unix. So it tries to
3173 guess by recognizing @samp{cd} commands. If you type @kbd{cd} followed
3174 by a directory name with a variable reference (@kbd{cd $HOME/bin}) or
3175 with a shell metacharacter (@kbd{cd ../lib*}), Emacs will fail to
3176 correctly guess the shell's new current directory. A huge variety of
3177 fixes and enhancements to shell mode for this problem have been written
3178 to handle this problem (@pxref{Finding a package with particular
3179 functionality}).
3180
3181 You can tell Emacs the shell's current directory with the command
3182 @kbd{M-x dirs}.
3183
3184 @node Security risks with Emacs, Dired claims that no file is on this line, Shell mode loses the current directory, Bugs and problems
3185 @section Are there any security risks in Emacs?
3186 @cindex Security with Emacs
3187 @cindex @samp{movemail} and security
3188 @cindex @code{file-local-variable} and security
3189 @cindex Synthetic X events and security
3190 @cindex X events and security
3191
3192 @itemize @bullet
3193
3194 @item
3195 The @file{movemail} incident. (No, this is not a risk.)
3196
3197 In his book @cite{The Cuckoo's Egg}, Cliff Stoll describes this in
3198 chapter 4. The site at LBL had installed the @file{/etc/movemail}
3199 program setuid root. (As of version 19, @file{movemail} is in your
3200 architecture-specific directory; type @kbd{C-h v exec-directory
3201 @key{RET}} to see what it is.) Since @code{movemail} had not been
3202 designed for this situation, a security hole was created and users could
3203 get root privileges.
3204
3205 @code{movemail} has since been changed so that this security hole will
3206 not exist, even if it is installed setuid root. However,
3207 @code{movemail} no longer needs to be installed setuid root, which
3208 should eliminate this particular risk.
3209
3210 We have heard unverified reports that the 1988 Internet worm took
3211 advantage of this configuration problem.
3212
3213 @item
3214 The @code{file-local-variable} feature. (Yes, a risk, but easy to
3215 change.)
3216
3217 There is an Emacs feature that allows the setting of local values for
3218 variables when editing a file by including specially formatted text near
3219 the end of the file. This feature also includes the ability to have
3220 arbitrary Emacs Lisp code evaluated when the file is visited.
3221 Obviously, there is a potential for Trojan horses to exploit this
3222 feature.
3223
3224 As of Emacs 22, Emacs has a list of local variables that are known to
3225 be safe to set. If a file tries to set any variable outside this
3226 list, it asks the user to confirm whether the variables should be set.
3227 You can also tell Emacs whether to allow the evaluation of Emacs Lisp
3228 code found at the bottom of files by setting the variable
3229 @code{enable-local-eval}.
3230
3231 For more information, @inforef{File Variables, File Variables, emacs}.
3232
3233 @item
3234 Synthetic X events. (Yes, a risk; use @samp{MIT-MAGIC-COOKIE-1} or
3235 better.)
3236
3237 Emacs accepts synthetic X events generated by the @code{SendEvent}
3238 request as though they were regular events. As a result, if you are
3239 using the trivial host-based authentication, other users who can open X
3240 connections to your X workstation can make your Emacs process do
3241 anything, including run other processes with your privileges.
3242
3243 The only fix for this is to prevent other users from being able to open
3244 X connections. The standard way to prevent this is to use a real
3245 authentication mechanism, such as @samp{MIT-MAGIC-COOKIE-1}. If using
3246 the @code{xauth} program has any effect, then you are probably using
3247 @samp{MIT-MAGIC-COOKIE-1}. Your site may be using a superior
3248 authentication method; ask your system administrator.
3249
3250 If real authentication is not a possibility, you may be satisfied by
3251 just allowing hosts access for brief intervals while you start your X
3252 programs, then removing the access. This reduces the risk somewhat by
3253 narrowing the time window when hostile users would have access, but
3254 @emph{does not eliminate the risk}.
3255
3256 On most computers running Unix and X, you enable and disable
3257 access using the @code{xhost} command. To allow all hosts access to
3258 your X server, use
3259
3260 @example
3261 xhost +
3262 @end example
3263
3264 @noindent
3265 at the shell prompt, which (on an HP machine, at least) produces the
3266 following message:
3267
3268 @example
3269 access control disabled, clients can connect from any host
3270 @end example
3271
3272 To deny all hosts access to your X server (except those explicitly
3273 allowed by name), use
3274
3275 @example
3276 xhost -
3277 @end example
3278
3279 On the test HP computer, this command generated the following message:
3280
3281 @example
3282 access control enabled, only authorized clients can connect
3283 @end example
3284
3285 @end itemize
3286
3287 @node Dired claims that no file is on this line, , Security risks with Emacs, Bugs and problems
3288 @section Dired says, @samp{no file on this line} when I try to do something.
3289 @cindex Dired does not see a file
3290
3291 @c FIXME: I think this is fixed in Emacs 21, but I didn't have time to
3292 @c check.
3293 Chances are you're using a localized version of Unix that doesn't use US
3294 date format in dired listings. You can check this by looking at dired
3295 listings or by typing @kbd{ls -l} to a shell and looking at the dates that
3296 come out.
3297
3298 Dired uses a regular expression to find the beginning of a file name.
3299 In a long Unix-style directory listing (@samp{ls -l}), the file name
3300 starts after the date. The regexp has thus been written to look for the
3301 date, the format of which can vary on non-US systems.
3302
3303 There are two approaches to solving this. The first one involves
3304 setting things up so that @samp{ls -l} outputs US date format. This can
3305 be done by setting the locale. See your OS manual for more information.
3306
3307 The second approach involves changing the regular expression used by
3308 dired, @code{directory-listing-before-filename-regexp}.
3309
3310 @c ------------------------------------------------------------
3311 @node Compiling and installing Emacs, Finding Emacs and related packages, Bugs and problems, Top
3312 @chapter Compiling and installing Emacs
3313 @cindex Compiling and installing Emacs
3314
3315 @menu
3316 * Installing Emacs::
3317 * Updating Emacs::
3318 * Problems building Emacs::
3319 * Linking with -lX11 fails::
3320 @end menu
3321
3322 @node Installing Emacs, Updating Emacs, Compiling and installing Emacs, Compiling and installing Emacs
3323 @section How do I install Emacs?
3324 @cindex Installing Emacs
3325 @cindex Unix systems, installing Emacs on
3326 @cindex Downloading and installing Emacs
3327 @cindex Retrieving and installing Emacs
3328 @cindex Building Emacs from source
3329 @cindex Source code, building Emacs from
3330 @cindex Unpacking and installing Emacs
3331
3332 This answer is meant for users of Unix and Unix-like systems. Users of
3333 other operating systems should see the series of questions beginning
3334 with @ref{Emacs for MS-DOS}, which describe where to get non-Unix source
3335 and binaries, and how to install Emacs on those systems.
3336
3337 For Unix and Unix-like systems, the easiest way is often to compile it
3338 from scratch. You will need:
3339
3340 @itemize @bullet
3341
3342 @item
3343 Emacs sources. @xref{Current GNU distributions}, for a list of ftp sites
3344 that make them available. On @file{ftp.gnu.org}, the main GNU
3345 distribution site, sources are available as
3346
3347 @uref{ftp://ftp.gnu.org/pub/gnu/emacs/emacs-@value{VER}.tar.gz}
3348
3349 The above will obviously change as new versions of Emacs come out. For
3350 instance, when Emacs 22.42 is released, it will most probably be
3351 available as
3352
3353 @uref{ftp://ftp.gnu.org/pub/gnu/emacs/emacs-22.42.tar.gz}
3354
3355 Again, you should use one of the GNU mirror sites (see @ref{Current GNU
3356 distributions}, and adjust the URL accordingly) so as to reduce load on
3357 @file{ftp.gnu.org}.
3358
3359 @item
3360 @code{gzip}, the GNU compression utility. You can get @code{gzip} via
3361 anonymous ftp at mirrors of @file{ftp.gnu.org} sites; it should compile
3362 and install without much trouble on most systems. Once you have
3363 retrieved the Emacs sources, you will probably be able to uncompress
3364 them with the command
3365
3366 @example
3367 gunzip --verbose emacs-@value{VER}.tar.gz
3368 @end example
3369
3370 @noindent
3371 changing the Emacs version (@value{VER}), as necessary. Once
3372 @code{gunzip} has finished doing its job, a file by the name of
3373 @file{emacs-@value{VER}.tar} should be in your build directory.
3374
3375 @item
3376 @code{tar}, the @dfn{tape archiving} program, which moves multiple files
3377 into and out of archive files, or @dfn{tarfiles}. All of the files
3378 comprising the Emacs source come in a single tarfile, and must be
3379 extracted using @code{tar} before you can build Emacs. Typically, the
3380 extraction command would look like
3381
3382 @example
3383 tar -xvvf emacs-@value{VER}.tar
3384 @end example
3385
3386 @noindent
3387 The @samp{x} indicates that we want to extract files from this tarfile,
3388 the two @samp{v}s force verbose output, and the @samp{f} tells
3389 @code{tar} to use a disk file, rather than one on the tape drive.
3390
3391 If you're using GNU @code{tar} (available at mirrors of
3392 @file{ftp.gnu.org}), you can combine this step and the previous one by
3393 using the command
3394
3395 @example
3396 tar -zxvvf emacs-@value{VER}.tar.gz
3397 @end example
3398
3399 @noindent
3400 The additional @samp{z} at the beginning of the options list tells GNU
3401 @code{tar} to uncompress the file with @code{gunzip} before extracting
3402 the tarfile's components.
3403
3404 @end itemize
3405
3406 At this point, the Emacs sources (all 70+ megabytes of them) should be
3407 sitting in a directory called @file{emacs-@value{VER}}. On most common
3408 Unix and Unix-like systems, you should be able to compile Emacs (with X
3409 Window system support) with the following commands:
3410
3411 @example
3412 cd emacs-@value{VER} # change directory to emacs-@value{VER}
3413 ./configure # configure Emacs for your particular system
3414 make # use Makefile to build components, then Emacs
3415 @end example
3416
3417 If the @code{make} completes successfully, the odds are fairly good that
3418 the build has gone well. (@xref{Problems building Emacs}, if you weren't
3419 successful.)
3420
3421 By default, Emacs is installed in the following directories:
3422
3423 @table @file
3424 @item /usr/local/bin
3425 binaries.
3426
3427 @item /usr/local/share/emacs/@value{VER}
3428 Lisp code and support files.
3429
3430 @item /usr/local/info
3431 Info documentation.
3432 @end table
3433
3434 To install files in those default directories, become the superuser and
3435 type
3436
3437 @example
3438 make install
3439 @end example
3440
3441 Note that @samp{make install} will overwrite @file{/usr/local/bin/emacs}
3442 and any Emacs Info files that might be in @file{/usr/local/info}.
3443
3444 Much more verbose instructions (with many more hints and suggestions)
3445 come with the Emacs sources, in the file @file{INSTALL}.
3446
3447 @node Updating Emacs, Problems building Emacs, Installing Emacs, Compiling and installing Emacs
3448 @section How do I update Emacs to the latest version?
3449 @cindex Updating Emacs
3450
3451 @xref{Installing Emacs}, and follow the instructions there for
3452 installation.
3453
3454 Most files are placed in version-specific directories. Emacs
3455 @value{VER}, for instance, places files in
3456 @file{/usr/local/share/emacs/@value{VER}}.
3457
3458 Upgrading should overwrite only, @file{/usr/local/bin/emacs} (the Emacs
3459 binary) and documentation in @file{/usr/local/info}. Back up these
3460 files before you upgrade, and you shouldn't have too much trouble.
3461
3462 @node Problems building Emacs, Linking with -lX11 fails, Updating Emacs, Compiling and installing Emacs
3463 @section What should I do if I have trouble building Emacs?
3464 @cindex Problems building Emacs
3465 @cindex Errors when building Emacs
3466
3467 First look in the file @file{etc/PROBLEMS} (where you unpack the Emacs
3468 source) to see if there is already a solution for your problem. Next,
3469 look for other questions in this FAQ that have to do with Emacs
3470 installation and compilation problems.
3471
3472 If you'd like to have someone look at your problem and help solve it,
3473 see @ref{Help installing Emacs}.
3474
3475 If you cannot find a solution in the documentation, send a message to
3476 @email{bug-gnu-emacs@@gnu.org}.
3477
3478 Please don't post it to @uref{news:gnu.emacs.help} or send e-mail to
3479 @email{help-gnu-emacs@@gnu.org}. For further guidelines, see
3480 @ref{Guidelines for newsgroup postings} and @ref{Reporting bugs}.
3481
3482 @node Linking with -lX11 fails, , Problems building Emacs, Compiling and installing Emacs
3483 @section Why does linking Emacs with -lX11 fail?
3484 @cindex Linking with -lX11 fails
3485 @cindex lX11, linking fails with
3486
3487 Emacs needs to be linked with the static version of the X11 library,
3488 @file{libX11.a}. This may be missing.
3489
3490 On OpenWindows, you may need to use @code{add_services} to add the
3491 ``OpenWindows Programmers'' optional software category from the CD-ROM.
3492
3493 On HP-UX 8.0, you may need to run @code{update} again to load the
3494 X11-PRG ``fileset.'' This may be missing even if you specified ``all
3495 filesets'' the first time. If @file{libcurses.a} is missing, you may
3496 need to load the ``Berkeley Development Option.''
3497
3498 @email{zoo@@armadillo.com, David Zuhn} says that MIT X builds shared
3499 libraries by default, and only shared libraries, on those platforms that
3500 support them. These shared libraries can't be used when undumping
3501 @code{temacs} (the last stage of the Emacs build process). To get
3502 regular libraries in addition to shared libraries, add this to
3503 @file{site.cf}:
3504
3505 @example
3506 #define ForceNormalLib YES
3507 @end example
3508
3509 Other systems may have similar problems. You can always define
3510 @code{CANNOT_DUMP} and link with the shared libraries instead.
3511
3512 @cindex X Menus don't work
3513 To get the Xmenu stuff to work, you need to find a copy of MIT's
3514 @file{liboldX.a}.
3515
3516 @c ------------------------------------------------------------
3517 @node Finding Emacs and related packages, Major packages and programs, Compiling and installing Emacs, Top
3518 @chapter Finding Emacs and related packages
3519 @cindex Finding Emacs and related packages
3520
3521 @menu
3522 * Finding Emacs on the Internet::
3523 * Finding a package with particular functionality::
3524 * Packages that do not come with Emacs::
3525 * Current GNU distributions::
3526 * Difference between Emacs and XEmacs::
3527 * Emacs for MS-DOS::
3528 * Emacs for Windows::
3529 * Emacs for OS/2::
3530 * Emacs for Atari ST::
3531 * Emacs for the Amiga ::
3532 * Emacs for NeXTSTEP::
3533 * Emacs for Apple computers::
3534 * Emacs for VMS and DECwindows::
3535 * Modes for various languages::
3536 @end menu
3537
3538 @node Finding Emacs on the Internet, Finding a package with particular functionality, Finding Emacs and related packages, Finding Emacs and related packages
3539 @section Where can I get Emacs on the net (or by snail mail)?
3540 @cindex Finding Emacs on the Internet
3541 @cindex Snail mail, ordering Emacs via
3542 @cindex Postal service, ordering Emacs via
3543 @cindex Distribution, retrieving Emacs
3544 @cindex Internet, retrieving from
3545
3546 Look in the files @file{etc/DISTRIB} and @file{etc/FTP} for
3547 information on nearby archive sites. If you don't already have Emacs,
3548 see @ref{Informational files for Emacs}, for how to get these files.
3549
3550 @xref{Installing Emacs}, for information on how to obtain and build the latest
3551 version of Emacs, and see @ref{Current GNU distributions}, for a list of
3552 archive sites that make GNU software available.
3553
3554 @node Finding a package with particular functionality, Packages that do not come with Emacs, Finding Emacs on the Internet, Finding Emacs and related packages
3555 @section How do I find a Emacs Lisp package that does XXX?
3556 @cindex Package, finding
3557 @cindex Finding an Emacs Lisp package
3558 @cindex Functionality, finding a particular package
3559
3560 First of all, you should check to make sure that the package isn't
3561 already available. For example, typing @kbd{M-x apropos @key{RET}
3562 wordstar @key{RET}} lists all functions and variables containing the
3563 string @samp{wordstar}.
3564
3565 It is also possible that the package is on your system, but has not been
3566 loaded. To see which packages are available for loading, look through
3567 your computer's lisp directory (@pxref{File-name conventions}). The Lisp
3568 source to most packages contains a short description of how they
3569 should be loaded, invoked, and configured---so before you use or
3570 modify a Lisp package, see if the author has provided any hints in the
3571 source code.
3572
3573 The command @kbd{C-h p} (@code{finder-by-keyword}) allows you to browse
3574 the constituent Emacs packages.
3575
3576 For advice on how to find extra packages that are not part of Emacs,
3577 see @ref{Packages that do not come with Emacs}.
3578
3579 @node Packages that do not come with Emacs, Current GNU distributions, Finding a package with particular functionality, Finding Emacs and related packages
3580 @section Where can I get Emacs Lisp packages that don't come with Emacs?
3581 @cindex Unbundled packages
3582 @cindex Finding other packages
3583 @cindex Lisp packages that do not come with Emacs
3584 @cindex Packages, those that do not come with Emacs
3585 @cindex Emacs Lisp List
3586 @cindex Emacs Lisp Archive
3587
3588 @uref{http://www.anc.ed.ac.uk/~stephen/emacs/ell.html, The Emacs Lisp
3589 List (ELL)}, maintained by @email{stephen@@anc.ed.ac.uk, Stephen Eglen},
3590 aims to provide one compact list with links to all of the current Emacs
3591 Lisp files on the Internet. The ELL can be browsed over the web, or
3592 from Emacs with @uref{http://www.anc.ed.ac.uk/~stephen/emacs/ell.el,
3593 the @file{ell} package}.
3594
3595 Many authors post their packages to the @uref{news:gnu.emacs.sources,
3596 Emacs sources newsgroup}. You can search the archives of this
3597 group with @uref{http://groups.google.com/group/gnu.emacs.sources, Google},
3598 or @uref{http://dir.gmane.org/gmane.emacs.sources, Gmane}, for example.
3599
3600 Several packages are stored in
3601 @uref{http://emacswiki.org/elisp/, the Lisp area of the Emacs Wiki}.
3602
3603 For a long time, the Emacs Lisp Archive provided a central repository
3604 for Emacs packages. Sadly, it has not been active for some time,
3605 although you can still access the old files at
3606
3607 @uref{http://www.club.cc.cmu.edu/pub/gnu/elisp-archive/}
3608
3609 Read the file @file{etc/MORE.STUFF} for more information about
3610 external packages.
3611
3612 @node Current GNU distributions, Difference between Emacs and XEmacs, Packages that do not come with Emacs, Finding Emacs and related packages
3613 @section Where can I get other up-to-date GNU stuff?
3614 @cindex Current GNU distributions
3615 @cindex Sources for current GNU distributions
3616 @cindex Stuff, current GNU
3617 @cindex Up-to-date GNU stuff
3618 @cindex Finding current GNU software
3619 @cindex Official GNU software sites
3620
3621 The most up-to-date official GNU software is normally kept at
3622
3623 @uref{ftp://ftp.gnu.org/pub/gnu}
3624
3625 Read the files @file{etc/DISTRIB} and @file{etc/FTP} for more
3626 information.
3627
3628 A list of sites mirroring @samp{ftp.gnu.org} can be found at
3629
3630 @uref{http://www.gnu.org/order/ftp.html}
3631
3632 @node Difference between Emacs and XEmacs, Emacs for MS-DOS, Current GNU distributions, Finding Emacs and related packages
3633 @section What is the difference between Emacs and XEmacs (formerly Lucid Emacs)?
3634 @cindex XEmacs
3635 @cindex Difference Emacs and XEmacs
3636 @cindex Lucid Emacs
3637 @cindex Epoch
3638
3639 XEmacs is a branch version of Emacs. It was first called Lucid Emacs,
3640 and was initially derived from a prerelease version of Emacs 19. In
3641 this FAQ, we use the name ``Emacs'' only for the official version.
3642
3643 Emacs and XEmacs each come with Lisp packages that are lacking in the
3644 other. The two versions have some significant differences at the Lisp
3645 programming level. Their current features are roughly comparable,
3646 though the support for some operating systems, character sets and
3647 specific packages might be quite different.
3648
3649 Some XEmacs code has been contributed to Emacs, and we would like to
3650 use other parts, but the earlier XEmacs maintainers did not always
3651 keep track of the authors of contributed code, which makes it
3652 impossible for the FSF to get copyright papers signed for that code.
3653 (The FSF requires these papers for all the code included in the Emacs
3654 release, aside from generic C support packages that retain their
3655 separate identity and are not integrated into the code of Emacs
3656 proper.)
3657
3658 If you want to talk about these two versions and distinguish them,
3659 please call them ``Emacs'' and ``XEmacs.'' To contrast ``XEmacs''
3660 with ``GNU Emacs'' would be misleading, since XEmacs too has its
3661 origin in the work of the GNU Project. Terms such as ``Emacsen'' and
3662 ``(X)Emacs'' are not wrong, but they are not very clear, so it
3663 is better to write ``Emacs and XEmacs.''
3664
3665 @node Emacs for MS-DOS, Emacs for Windows, Difference between Emacs and XEmacs, Finding Emacs and related packages
3666 @section Where can I get Emacs for my PC running MS-DOS?
3667 @cindex MS-DOS, Emacs for
3668 @cindex DOS, Emacs for
3669 @cindex Compiling Emacs for DOS
3670 @cindex Emacs for MS-DOS
3671 @cindex Tools needed to compile Emacs under DOS
3672
3673 A pre-built binary distribution of Emacs is available from the
3674 SimTel.NET archives. This version apparently works under MS-DOS and
3675 Windows (3.X, 9X, ME, NT, and 2000) and supports long file names under
3676 Windows 9X, Windows ME, and Windows 2000. More information is available
3677 from
3678
3679 @uref{ftp://ftp.delorie.com/pub/djgpp/current/v2gnu/emacs.README}
3680
3681 The binary itself is available in the files @file{em*.zip} in the
3682 directory
3683
3684 @uref{ftp://ftp.delorie.com/pub/djgpp/current/v2gnu/}
3685
3686 If you prefer to compile Emacs for yourself, you can do so with the
3687 current distribution directly. You will need a 386 (or
3688 better) processor, and to be running MS-DOS 3.0 or later. According to
3689 @email{eliz@@gnu.org, Eli Zaretskii} and
3690 @email{hankedr@@dms.auburn.edu, Darrel Hankerson}, you will need the
3691 following:
3692
3693 @table @emph
3694
3695 @item Compiler
3696 DJGPP version 1.12 maint 1 or later. Djgpp 2.0 or later is
3697 recommended, since 1.x is very old an unmaintained. Djgpp 2 supports
3698 long file names on Windows 9X/ME/2K.
3699
3700 You can get the latest release of DJGPP by retrieving all of
3701 the files in
3702
3703 @uref{ftp://ftp.delorie.com/pub/djgpp/current/v2*}
3704
3705 @item Unpacking program
3706 The easiest way is to use @code{djtar} which comes with DJGPP v2.x,
3707 because it can open gzip'ed tarfiles (i.e., those ending with
3708 @file{.tar.gz}) in one step. @code{Djtar} comes in
3709 @file{djdev@var{nnn}.zip} archive (where @var{nnn} is the DJGPP version
3710 number), from the URL mentioned above.
3711
3712 @strong{Warning!} Do @strong{not} use the popular WinZip program to
3713 unpack the Emacs distribution! WinZip is known to corrupt some of the
3714 files by converting them to the DOS CR-LF format, it doesn't always
3715 preserve the directory structure recorded in the compressed Emacs
3716 archive, and commits other atrocities. Some of these problems could
3717 actually prevent Emacs from building successfully!
3718
3719 @item make, mv, sed, and rm
3720 All of these utilities are available at
3721
3722 @uref{ftp://ftp.delorie.com/pub/djgpp/current/v2gnu}
3723
3724 16-bit utilities can be found in GNUish, at
3725
3726 @uref{http://www.simtel.net/pub/gnuish/}
3727
3728 @noindent
3729 (@code{mv} and @code{rm} are in the Fileutils package, @code{sed} and
3730 @code{make} are each one in a separate package named after them.)
3731
3732 @end table
3733
3734 The files @file{INSTALL} (near its end) and @file{etc/PROBLEMS} in the
3735 directory of the Emacs sources contains some additional information
3736 regarding Emacs under MS-DOS.
3737
3738 For a list of other MS-DOS implementations of Emacs (and Emacs
3739 look-alikes), consult the list of ``Emacs implementations and literature,''
3740 available at
3741
3742 @uref{ftp://rtfm.mit.edu/pub/usenet/comp.emacs/}
3743
3744 Note that while many of these programs look similar to Emacs, they often
3745 lack certain features, such as the Emacs Lisp extension language.
3746
3747 @node Emacs for Windows, Emacs for OS/2, Emacs for MS-DOS, Finding Emacs and related packages
3748 @section Where can I get Emacs for Microsoft Windows?
3749 @cindex FAQ for NT Emacs
3750 @cindex Emacs for MS-Windows
3751 @cindex Microsoft Windows, Emacs for
3752 @cindex Windows 9X, ME, NT, 2K, and CE, Emacs for
3753
3754 For information on Emacs for Windows 95 and NT, read the FAQ produced by
3755 @email{voelker@@cs.washington.edu, Geoff Voelker} and currently maintained
3756 by @email{ramprasad@@gnu.org, Ramprasad B}, available at
3757
3758 @uref{http://www.gnu.org/software/emacs/windows/ntemacs.html}
3759
3760 @xref{Emacs for MS-DOS}, for Windows 3.1.
3761
3762 A port of Emacs 20.7 for Windows CE, based on NTEmacs, is available at
3763
3764 @uref{http://www.rainer-keuchel.de/software.html}
3765
3766 @noindent
3767 This port was done by @email{coyxc@@rainer-keuchel.de, Rainer Keuchel},
3768 and supports all Emacs features except async subprocesses and menus.
3769 You will need MSVC 6.0 and a Windows CE SDK to build this port.
3770
3771 @node Emacs for OS/2, Emacs for Atari ST, Emacs for Windows, Finding Emacs and related packages
3772 @section Where can I get Emacs for my PC running OS/2?
3773 @cindex OS/2, Emacs for
3774
3775 Emacs 20.6 is ported for emx on OS/2 2.0 or 2.1, and is available at
3776
3777 @uref{ftp://hobbes.nmsu.edu/pub/os2/apps/editors/emacs/}
3778
3779 @noindent
3780 and also at
3781
3782 @uref{http://www.dotemacs.de/os2/emacs.html}
3783
3784 Instructions for installation, basic setup, and other useful information
3785 for OS/2 users of Emacs can be found at
3786
3787 @uref{http://home.snafu.de/ohei/emacs/emacs206-os2.html}
3788
3789 @node Emacs for Atari ST, Emacs for the Amiga , Emacs for OS/2, Finding Emacs and related packages
3790 @section Where can I get Emacs for my Atari ST?
3791 @cindex Atari ST, Emacs for
3792 @cindex TOS, Emacs for
3793
3794 Roland Sch@"auble reports that Emacs 18.58 running on plain TOS and MiNT
3795 is available at
3796 @uref{ftp://atari.archive.umich.edu/Editors/Emacs-18-58/1858b-d3.zoo}.
3797
3798 @node Emacs for the Amiga , Emacs for NeXTSTEP, Emacs for Atari ST, Finding Emacs and related packages
3799 @section Where can I get Emacs for my Amiga?
3800 @cindex Amiga, Emacs for
3801
3802 The files you need are available at
3803
3804 @uref{ftp://ftp.wustl.edu/pub/aminet/util/gnu/}
3805
3806 @email{dgilbert@@gamiga.guelphnet.dweomer.org, David Gilbert} has released a
3807 beta version of Emacs 19.25 for the Amiga. You can get the binary at
3808
3809 @uref{ftp://ftp.wustl.edu/pub/aminet/util/gnu/a2.0bEmacs-bin.lha}
3810
3811 @node Emacs for NeXTSTEP, Emacs for Apple computers, Emacs for the Amiga , Finding Emacs and related packages
3812 @section Where can I get Emacs for NeXTSTEP?
3813 @cindex NeXTSTEP, Emacs for
3814
3815 Emacs.app is a NeXTSTEP version of Emacs 19.34 which supports colors,
3816 menus, and multiple frames. You can get it from
3817
3818 @uref{ftp://next-ftp.peak.org/pub/next-ftp/next/apps/emacs/Emacs_for_NeXTstep.4.20a1.NIHS.b.tar.gz}
3819
3820 @node Emacs for Apple computers, Emacs for VMS and DECwindows, Emacs for NeXTSTEP, Finding Emacs and related packages
3821 @section Where can I get Emacs for my Apple computer?
3822 @cindex Apple computers, Emacs for
3823 @cindex Macintosh, Emacs for
3824
3825 Beginning with version 22.1, Emacs supports Mac OS X natively.
3826
3827 @node Emacs for VMS and DECwindows, Modes for various languages, Emacs for Apple computers, Finding Emacs and related packages
3828 @section Where do I get Emacs that runs on VMS under DECwindows?
3829 @cindex DECwindows, Emacs for
3830 @cindex VMS, Emacs for
3831
3832 Up-to-date information about GNU software (including Emacs) for VMS is
3833 available at @uref{http://www.lp.se/gnu-vms/}.
3834
3835 @node Modes for various languages, , Emacs for VMS and DECwindows, Finding Emacs and related packages
3836 @section Where can I get modes for Lex, Yacc/Bison, Bourne shell, csh, C@t{++}, Objective-C, Pascal, Java, and Awk?
3837 @cindex Awk, mode for
3838 @cindex @code{awk-mode}
3839 @cindex Bison, mode for
3840 @cindex Bourne Shell, mode for
3841 @cindex C@t{++}, mode for
3842 @cindex Java, mode for
3843 @cindex Lex mode
3844 @cindex Objective-C, mode for
3845 @cindex @code{pascal-mode}
3846 @cindex Shell mode
3847 @cindex Yacc mode
3848 @cindex @file{csh} mode
3849 @cindex @code{sh-mode}
3850 @cindex @code{cc-mode}
3851
3852 Most of these modes are now available in standard Emacs distribution.
3853 To get additional modes, see @ref{Finding a package with particular
3854 functionality}.
3855
3856 Barry Warsaw's @code{cc-mode} now works for C, C@t{++}, Objective-C, and
3857 Java code. It is distributed with Emacs, but has
3858 @uref{http://cc-mode.sourceforge.net/, its own homepage}.
3859
3860 @c ------------------------------------------------------------
3861 @node Major packages and programs, Key bindings, Finding Emacs and related packages, Top
3862 @chapter Major packages and programs
3863 @cindex Major packages and programs
3864
3865 @menu
3866 * VM::
3867 * AUCTeX::
3868 * BBDB::
3869 * Ispell::
3870 * Emacs/W3::
3871 * EDB::
3872 * Mailcrypt::
3873 * JDE::
3874 * Patch::
3875 @end menu
3876
3877 @node VM, AUCTeX, Major packages and programs, Major packages and programs
3878 @section VM (View Mail) --- another mail reader within Emacs, with MIME support
3879 @cindex VM
3880 @cindex Alternative mail software
3881 @cindex View Mail
3882 @cindex E-mail reader, VM
3883
3884 @table @b
3885
3886 @item Maintainer
3887 @email{hack@@robf.de, Robert Widhopf-Fenk}
3888
3889 @item Latest version
3890 8.0
3891
3892 @item Web site
3893 @uref{http://www.nongnu.org/viewmail/}
3894
3895 @item Informational newsgroup
3896 @uref{news:gnu.emacs.vm.info}@*
3897
3898 @item Bug reports newsgroup
3899 @uref{news:gnu.emacs.vm.bug}@*
3900 @end table
3901
3902 VM was originally written by @uref{http://www.wonderworks.com/vm/,Kyle Jones}.
3903 @uref{ftp://ftp.wonderworks.com/pub/vm/,Older versions} of VM remain
3904 available.
3905
3906
3907 @node AUCTeX, BBDB, VM, Major packages and programs
3908 @section AUC@TeX{} --- enhanced @TeX{} modes with debugging facilities
3909 @cindex Mode for @TeX{}
3910 @cindex @TeX{} mode
3911 @cindex AUC@TeX{} mode for editing @TeX{}
3912 @cindex Writing and debugging @TeX{}
3913
3914 AUC@TeX{} is a set of sophisticated major modes for @TeX{}, LaTeX,
3915 ConTeXt, and Texinfo offering context-sensitive syntax highlighting,
3916 indentation, formatting and folding, macro completion, @TeX{} shell
3917 functionality, and debugging. Be also sure to check out
3918 @ref{Introduction, RefTeX, Introduction, reftex, Ref@TeX{} User Manual}.
3919 Current versions of AUC@TeX{} include the
3920 @uref{http://www.gnu.org/software/auctex/preview-latex.html,preview-latex}
3921 package for WYSIWYG previews of various LaTeX constructs in the Emacs
3922 source buffer.
3923
3924 @table @b
3925
3926 @item Authors
3927 @email{krab@@iesd.auc.dk, Kresten Krab Thorup}, @*
3928 @email{abraham@@dina.kvl.dk, Per Abrahamsen}, @* and others.
3929
3930 @item Maintainer
3931 @email{dak@@gnu.org, David Kastrup}
3932
3933 @item Latest version
3934 11.85
3935
3936 @item Distribution
3937 @uref{ftp://ftp.gnu.org/pub/gnu/auctex/}
3938
3939 @item Web site
3940 @uref{http://www.gnu.org/software/auctex/}
3941
3942 @item Mailing list:
3943 Subscription requests to @email{auctex-request@@gnu.org}@*
3944 Submissions to @email{auctex@@gnu.org}
3945
3946 @end table
3947
3948 @node BBDB, Ispell, AUCTeX, Major packages and programs
3949 @section BBDB --- personal Info Rolodex integrated with mail/news readers
3950 @cindex BBDB
3951 @cindex Rolodex-like functionality
3952 @cindex Integrated contact database
3953 @cindex Contact database
3954 @cindex Big Brother Database
3955 @cindex Address book
3956
3957 @table @b
3958
3959 @item Maintainer
3960 @email{hack@@robf.de, Robert Widhopf-Fenk}
3961
3962 @item Latest version
3963 2.35
3964
3965 @item Distribution
3966 @uref{http://bbdb.sourceforge.net/}
3967
3968 @item Mailing lists
3969 Subscription requests to @email{bbdb-info-request@@lists.sourceforge.net}@*
3970 Submissions to @email{bbdb-info@@lists.sourceforge.net}@*
3971 Release announcements: @email{bbdb-announce-request@@lists.sourceforge.net}
3972
3973 @end table
3974
3975 @node Ispell, Emacs/W3, BBDB, Major packages and programs
3976 @section Ispell --- spell checker in C with interface for Emacs
3977 @cindex Spell-checker
3978 @cindex Checking spelling
3979 @cindex Ispell
3980
3981 @table @b
3982
3983 @item Author
3984 @email{geoff@@cs.hmc.edu, Geoff Kuenning}
3985
3986 @item Latest version
3987 3.3.02
3988
3989 @item Distribution
3990 @uref{http://fmg-www.cs.ucla.edu/geoff/tars/ispell-3.3.02.tar.gz}@*
3991
3992 @item Web site
3993 @uref{http://fmg-www.cs.ucla.edu/geoff/ispell.html}
3994
3995 @end table
3996
3997 This Ispell program is distinct from GNU Ispell 4.0. GNU Ispell 4.0 is
3998 no longer a supported product.
3999
4000 @node Emacs/W3, EDB, Ispell, Major packages and programs
4001 @section Emacs/W3 --- A World Wide Web browser inside of Emacs
4002 @cindex WWW browser
4003 @cindex Web browser
4004 @cindex HTML browser in Emacs
4005 @cindex @code{w3-mode}
4006
4007 @table @b
4008
4009 @item Author
4010 @email{wmperry@@gnu.org, Bill Perry}
4011
4012 @item Maintainer
4013 Emacs/W3 needs a maintainer. It has lain dormant for several years. If
4014 you would like to take over the project, please contact
4015 @email{maintainers@@gnu.org}.
4016
4017 @item Latest version
4018 4.0pre.47
4019
4020 @item Distribution
4021 @uref{http://savannah.gnu.org/projects/w3}
4022
4023 @item Mailing lists
4024 Receive announcements from @email{w3-announce@@gnu.org}@*
4025 Help to develop Emacs/W3 at @email{w3-dev@@gnu.org}
4026
4027 @end table
4028
4029 @node EDB, Mailcrypt, Emacs/W3, Major packages and programs
4030 @section EDB --- Database program for Emacs; replaces forms editing modes
4031 @cindex EDB
4032 @cindex Database
4033 @cindex Forms mode
4034
4035 @table @b
4036 @item Author
4037 @email{mernst@@theory.lcs.mit.edu, Michael Ernst}
4038
4039 @item Latest version
4040 1.21
4041
4042 @item Distribution
4043 @uref{ftp://theory.lcs.mit.edu/pub/emacs/edb}
4044
4045 @end table
4046
4047 @node Mailcrypt, JDE, EDB, Major packages and programs
4048 @section Mailcrypt --- PGP interface within Emacs mail and news
4049 @cindex PGP
4050 @cindex GPG
4051 @cindex Interface to PGP from Emacs mail and news
4052 @cindex News, interface to PGP from
4053 @cindex Mail, interface to PGP from
4054 @cindex Encryption software, interface to
4055
4056 @table @b
4057
4058 @item Authors
4059 @email{patl@@lcs.mit.edu, Patrick J. LoPresti} and
4060 @email{jin@@atype.com, Jin S. Choi}
4061
4062 @item Maintainer
4063 @email{warner-mailcrypt@@lothar.com, Brian Warner}
4064
4065 @item Latest version
4066 3.5.8
4067
4068 @item Distribution
4069 @uref{http://dl.sourceforge.net/sourceforge/mailcrypt/mailcrypt-3.5.8.tar.gz}
4070
4071 @item Web site
4072 @uref{http://mailcrypt.sourceforge.net/}
4073
4074 @end table
4075
4076 Note that a new package called PGG is bundled with Emacs starting with
4077 version 22.1. It is a modern interface to various PGP implementations,
4078 including @uref{http://www.gnupg.org/, The GNU Privacy Guard} and
4079 supports symmetric encryption.
4080
4081 @node JDE, Patch, Mailcrypt, Major packages and programs
4082 @section JDE --- Integrated development environment for Java
4083 @cindex Java development environment
4084 @cindex Integrated Java development environment
4085 @cindex JDE
4086
4087 @table @b
4088
4089 @item Author
4090 @email{paulk@@mathworks.com, Paul Kinnucan}
4091
4092 @item Latest version
4093 2.3.5
4094
4095 @item Web site
4096 @uref{http://jdee.sunsite.dk/}
4097
4098 @item Mailing lists
4099 Subscription requests to @email{jde-subscribe@@sunsite.dk}@*
4100 Receive announcements from @email{jde-announce-subscribe@@sunsite.dk}
4101
4102 @end table
4103
4104 @node Patch, , JDE, Major packages and programs
4105 @section Patch --- program to apply ``diffs'' for updating files
4106 @cindex Updating files with diffs
4107 @cindex Patching source files with diffs
4108 @cindex Diffs and patching
4109 @cindex @file{patch}
4110
4111 @table @b
4112
4113 @item Author
4114 @email{lwall@@wall.org, Larry Wall} (with GNU modifications)
4115
4116 @item Latest version
4117 2.5.4
4118
4119 @item Distribution
4120 @xref{Current GNU distributions}.
4121
4122 @end table
4123
4124 @c ------------------------------------------------------------
4125 @node Key bindings, Alternate character sets, Major packages and programs, Top
4126 @chapter Key bindings
4127 @cindex Key bindings
4128
4129 @menu
4130 * Binding keys to commands::
4131 * Invalid prefix characters::
4132 * Terminal setup code works after Emacs has begun::
4133 * Using function keys under X::
4134 * Working with function and arrow keys::
4135 * X key translations for Emacs::
4136 * Handling C-s and C-q with flow control::
4137 * Binding C-s and C-q::
4138 * Backspace invokes help::
4139 * stty and Backspace key::
4140 * Swapping keys::
4141 * Producing C-XXX with the keyboard::
4142 * No Meta key::
4143 * No Escape key::
4144 * Compose Character::
4145 * Binding combinations of modifiers and function keys::
4146 * Meta key does not work in xterm::
4147 * ExtendChar key does not work as Meta::
4148 * SPC no longer completes file names::
4149 @end menu
4150
4151 @node Binding keys to commands, Invalid prefix characters, Key bindings, Key bindings
4152 @section How do I bind keys (including function keys) to commands?
4153 @cindex Binding keys to commands
4154 @cindex Keys, binding to commands
4155 @cindex Commands, binding keys to
4156
4157 Keys can be bound to commands either interactively or in your
4158 @file{.emacs} file. To interactively bind keys for all modes, type
4159 @kbd{M-x global-set-key @key{RET} @var{key} @var{cmd} @key{RET}}.
4160
4161 To bind a key just in the current major mode, type @kbd{M-x
4162 local-set-key @key{RET} @var{key} @var{cmd} @key{RET}}.
4163
4164 @inforef{Key Bindings, Key Bindings, emacs}, for further details.
4165
4166 To make the process of binding keys interactively easier, use the
4167 following ``trick'': First bind the key interactively, then immediately
4168 type @kbd{C-x @key{ESC} @key{ESC} C-a C-k C-g}. Now, the command needed
4169 to bind the key is in the kill ring, and can be yanked into your
4170 @file{.emacs} file. If the key binding is global, no changes to the
4171 command are required. For example,
4172
4173 @lisp
4174 (global-set-key (quote [f1]) (quote help-for-help))
4175 @end lisp
4176
4177 @noindent
4178 can be placed directly into the @file{.emacs} file. If the key binding is
4179 local, the command is used in conjunction with the @samp{add-hook} function.
4180 For example, in TeX mode, a local binding might be
4181
4182 @lisp
4183 (add-hook 'tex-mode-hook
4184 (lambda ()
4185 (local-set-key (quote [f1]) (quote help-for-help))))
4186 @end lisp
4187
4188
4189 @itemize @bullet
4190
4191 @item
4192 Control characters in key sequences, in the form yanked from the kill
4193 ring are given in their graphic form---i.e., @key{CTRL} is shown as
4194 @samp{^}, @key{TAB} as a set of spaces (usually 8), etc. You may want
4195 to convert these into their vector or string forms.
4196
4197 @item
4198 If a prefix key of the character sequence to be bound is already
4199 bound as a complete key, then you must unbind it before the new
4200 binding. For example, if @kbd{ESC @{} is previously bound:
4201
4202 @lisp
4203 (global-unset-key [?\e ?@{]) ;; or
4204 (local-unset-key [?\e ?@{])
4205 @end lisp
4206
4207 @item
4208 Aside from commands and ``lambda lists,'' a vector or string also
4209 can be bound to a key and thus treated as a macro. For example:
4210
4211 @lisp
4212 (global-set-key [f10] [?\C-x?\e?\e?\C-a?\C-k?\C-g]) ;; or
4213 (global-set-key [f10] "\C-x\e\e\C-a\C-k\C-g")
4214 @end lisp
4215
4216 @end itemize
4217
4218 @node Invalid prefix characters, Terminal setup code works after Emacs has begun, Binding keys to commands, Key bindings
4219 @section Why does Emacs say @samp{Key sequence XXX uses invalid prefix characters}?
4220 @cindex Prefix characters, invalid
4221 @cindex Invalid prefix characters
4222 @cindex Misspecified key sequences
4223
4224 Usually, one of two things has happened. In one case, the control
4225 character in the key sequence has been misspecified (e.g. @samp{C-f}
4226 used instead of @samp{\C-f} within a Lisp expression). In the other
4227 case, a @dfn{prefix key} in the keystroke sequence you were trying to bind
4228 was already bound as a @dfn{complete key}. Historically, the @samp{ESC [}
4229 prefix was usually the problem, in which case you should evaluate either
4230 of these forms before attempting to bind the key sequence:
4231
4232 @lisp
4233 (global-unset-key [?\e ?[]) ;; or
4234 (global-unset-key "\e[")
4235 @end lisp
4236
4237 @node Terminal setup code works after Emacs has begun, Using function keys under X, Invalid prefix characters, Key bindings
4238 @section Why doesn't this [terminal or window-system setup] code work in my @file{.emacs} file, but it works just fine after Emacs starts up?
4239 @cindex Terminal setup code in @file{.emacs}
4240
4241 During startup, Emacs initializes itself according to a given code/file
4242 order. If some of the code executed in your @file{.emacs} file needs to
4243 be postponed until the initial terminal or window-system setup code has
4244 been executed but is not, then you will experience this problem (this
4245 code/file execution order is not enforced after startup).
4246
4247 To postpone the execution of Emacs Lisp code until after terminal or
4248 window-system setup, treat the code as a @dfn{lambda list} and set the
4249 value of either the @code{term-setup-hook} or @code{window-setup-hook}
4250 variable to this lambda function. For example,
4251
4252 @lisp
4253 (add-hook 'term-setup-hook
4254 (lambda ()
4255 (when (string-match "\\`vt220" (or (getenv "TERM") ""))
4256 ;; Make vt220's "Do" key behave like M-x:
4257 (global-set-key [do] 'execute-extended-command))))
4258 @end lisp
4259
4260 For information on what Emacs does every time it is started, see the
4261 @file{lisp/startup.el} file.
4262
4263 @node Using function keys under X, Working with function and arrow keys, Terminal setup code works after Emacs has begun, Key bindings
4264 @section How do I use function keys under X?
4265 @cindex Function keys
4266 @cindex X Window System and function keys
4267 @cindex Binding function keys
4268
4269 With Emacs 19, functions keys under X are bound like any other key. @xref{Binding keys to commands}, for details.
4270
4271 @node Working with function and arrow keys, X key translations for Emacs, Using function keys under X, Key bindings
4272 @section How do I tell what characters or symbols my function or arrow keys emit?
4273 @cindex Working with arrow keys
4274 @cindex Arrow keys, symbols generated by
4275 @cindex Working with function keys
4276 @cindex Function keys, symbols generated by
4277 @cindex Symbols generated by function keys
4278
4279 Type @kbd{C-h c} then the function or arrow keys. The command will
4280 return either a function key symbol or character sequence (see the
4281 Emacs on-line documentation for an explanation). This works for other
4282 keys as well.
4283
4284 @node X key translations for Emacs, Handling C-s and C-q with flow control, Working with function and arrow keys, Key bindings
4285 @section How do I set the X key ``translations'' for Emacs?
4286 @cindex X key translations
4287 @cindex Key translations under X
4288 @cindex Translations for keys under X
4289
4290 Emacs is not written using the Xt library by default, so there are no
4291 ``translations'' to be set. (We aren't sure how to set such translations
4292 if you do build Emacs with Xt; please let us know if you've done this!)
4293
4294 The only way to affect the behavior of keys within Emacs is through
4295 @code{xmodmap} (outside Emacs) or @code{define-key} (inside Emacs). The
4296 @code{define-key} command should be used in conjunction with the
4297 @code{function-key-map} map. For instance,
4298
4299 @lisp
4300 (define-key function-key-map [M-@key{TAB}] [?\M-\t])
4301 @end lisp
4302
4303 @noindent
4304 defines the @kbd{M-@key{TAB}} key sequence.
4305
4306 @node Handling C-s and C-q with flow control, Binding C-s and C-q, X key translations for Emacs, Key bindings
4307 @section How do I handle @kbd{C-s} and @kbd{C-q} being used for flow control?
4308 @cindex Flow control, @kbd{C-s} and @kbd{C-q} with
4309 @cindex @kbd{C-s} and @kbd{C-q} with flow control
4310
4311 @kbd{C-s} and @kbd{C-q} are used in the XON/XOFF flow control protocol.
4312 This messes things up when you're using Emacs over a serial line,
4313 because Emacs binds these keys to commands by default. Because Emacs
4314 won't honor them as flow control characters, too many of these
4315 characters are not passed on and overwhelm output buffers. Sometimes,
4316 intermediate software using XON/XOFF flow control will prevent Emacs
4317 from ever seeing @kbd{C-s} and @kbd{C-q}.
4318
4319 Possible solutions:
4320
4321 @itemize @bullet
4322
4323 @item
4324 Disable the use of @kbd{C-s} and @kbd{C-q} for flow control.
4325
4326 You need to determine the cause of the flow control.
4327
4328 @itemize @minus
4329
4330 @item
4331 your terminal
4332
4333 Your terminal may use XON/XOFF flow control to have time to display
4334 all the characters it receives. For example, VT series terminals do
4335 this. It may be possible to turn this off from a setup menu. For
4336 example, on a VT220 you may select ``No XOFF'' in the setup menu. This
4337 is also true for some terminal emulation programs on PCs.
4338
4339 When you turn off flow control at the terminal, you will also need to
4340 turn it off at the other end, which might be at the computer you are
4341 logged in to or at some terminal server in between.
4342
4343 If you turn off flow control, characters may be lost; using a printer
4344 connected to the terminal may fail. You may be able to get around
4345 this problem by modifying the @samp{termcap} entry for your terminal to
4346 include extra NUL padding characters.
4347
4348 @item
4349 a modem
4350
4351 If you are using a dialup connection, the modems may be using
4352 XON/XOFF flow control. It's not clear how to get around this.
4353
4354 @item
4355 a router or terminal server
4356
4357 Some network box between the terminal and your computer may be using
4358 XON/XOFF flow control. It may be possible to make it use some other
4359 kind of flow control. You will probably have to ask your local
4360 network experts for help with this.
4361
4362 @item
4363 @code{tty} and/or @code{pty} devices
4364
4365 If your connection to Emacs goes through multiple @code{tty} and/or
4366 @code{pty} devices, they may be using XON/XOFF flow control even when it
4367 is not necessary.
4368
4369 @email{eirik@@theory.tn.cornell.edu, Eirik Fuller} writes:
4370
4371 @quotation
4372 Some versions of @code{rlogin} (and possibly @code{telnet}) do not pass
4373 flow control characters to the remote system to which they connect. On
4374 such systems, Emacs on the remote system cannot disable flow control on
4375 the local system. Sometimes @samp{rlogin -8} will avoid this problem.
4376
4377 One way to cure this is to disable flow control on the local host (the
4378 one running @code{rlogin}, not the one running @code{rlogind}) using the
4379 @code{stty} command, before starting the @code{rlogin} process. On many
4380 systems, @samp{stty start u stop u} will do this.
4381
4382 Some versions of @samp{tcsh} will prevent even this from working. One
4383 way around this is to start another shell before starting rlogin,
4384 and issue the @samp{stty} command to disable flow control from that shell.
4385 @end quotation
4386
4387 Use @samp{stty -ixon} instead of @samp{stty start u stop u} on some systems.
4388
4389 @end itemize
4390
4391 @item
4392 Make Emacs speak the XON/XOFF flow control protocol.
4393
4394 You can make Emacs treat @kbd{C-s} and @kbd{C-q} as flow control characters by
4395 evaluating the form
4396
4397 @lisp
4398 (enable-flow-control)
4399 @end lisp
4400
4401 @noindent
4402 to unconditionally enable flow control or
4403
4404 @lisp
4405 (enable-flow-control-on "vt100" "h19")
4406 @end lisp
4407
4408 @noindent
4409 (using your terminal names instead of @samp{vt100} or @samp{h19}) to
4410 enable selectively. These commands will automatically swap @kbd{C-s}
4411 and @kbd{C-q} to @kbd{C-\} and @kbd{C-^}. Variables can be used to
4412 change the default swap keys (@code{flow-control-c-s-replacement} and
4413 @code{flow-control-c-q-replacement}).
4414
4415 If you are fixing this for yourself, simply put the form in your
4416 @file{.emacs} file. If you are fixing this for your entire site, the
4417 best place to put it is in the @file{site-lisp/site-start.el} file.
4418 (Here @file{site-lisp} is actually a subdirectory of your Emacs
4419 installation directory, typically @file{/usr/local/share/emacs}.)
4420 Putting this form in @file{site-lisp/default.el} has the problem that
4421 if the user's @file{.emacs} file has an error, this will prevent
4422 @file{default.el} from being loaded and Emacs may be unusable for the
4423 user, even for correcting their @file{.emacs} file (unless they're
4424 smart enough to move it to another name).
4425
4426 @code{enable-flow-control} can be invoked interactively as well:
4427 @kbd{M-x enable-flow-control @key{RET}}.
4428
4429 @end itemize
4430
4431 For further discussion of this issue, read the file @file{etc/PROBLEMS}
4432 (in the Emacs source directory when you unpack the Emacs distribution).
4433
4434 @node Binding C-s and C-q, Backspace invokes help, Handling C-s and C-q with flow control, Key bindings
4435 @section How do I bind @kbd{C-s} and @kbd{C-q} (or any key) if these keys are filtered out?
4436 @cindex Binding @kbd{C-s} and @kbd{C-q}
4437 @cindex @kbd{C-s} and @kbd{C-q}, binding
4438
4439 To bind @kbd{C-s} and @kbd{C-q}, use either @code{enable-flow-control}
4440 or @code{enable-flow-control-on}. @xref{Handling C-s and C-q with flow
4441 control}, for usage and implementation details.
4442
4443 To bind other keys, use @code{keyboard-translate}. @xref{Swapping
4444 keys}, for usage details. To do this for an entire site, you should
4445 swap the keys in @file{site-lisp/site-start.el}. @xref{Handling C-s
4446 and C-q with flow control}, for an explanation of why
4447 @file{site-lisp/default.el} should not be used.
4448
4449 @itemize @bullet
4450
4451 @item
4452 If you do this for an entire site, the users will be confused by
4453 the disparity between what the documentation says and how Emacs
4454 actually behaves.
4455
4456 @end itemize
4457
4458 @node Backspace invokes help, stty and Backspace key, Binding C-s and C-q, Key bindings
4459 @section Why does the @key{Backspace} key invoke help?
4460 @cindex Backspace key invokes help
4461 @cindex Help invoked by Backspace
4462 @cindex DEL key does not delete
4463
4464 The @key{Backspace} key (on most keyboards) generates @acronym{ASCII} code 8.
4465 @kbd{C-h} sends the same code. In Emacs by default @kbd{C-h} invokes
4466 help-command. This is intended to be easy to remember since the first
4467 letter of @samp{help} is @samp{h}. The easiest solution to this problem
4468 is to use @kbd{C-h} (and @key{Backspace}) for help and @key{DEL} (the
4469 @key{Delete} key) for deleting the previous character.
4470
4471 For many people this solution may be problematic:
4472
4473 @itemize @bullet
4474
4475 @item
4476 They normally use @key{Backspace} outside of Emacs for deleting the
4477 previous character. This can be solved by making @key{DEL} the command
4478 for deleting the previous character outside of Emacs. On many Unix
4479 systems, this command will remap @key{DEL}:
4480
4481 @example
4482 stty erase `^?'
4483 @end example
4484
4485 @item
4486 The user may prefer the @key{Backspace} key for deleting the
4487 previous character because it is more conveniently located on their
4488 keyboard or because they don't even have a separate @key{Delete} key.
4489 In this case, the @key{Backspace} key should be made to behave like
4490 @key{Delete}. There are several methods.
4491
4492 @itemize @minus
4493 @item
4494 Some terminals (e.g., VT3## terminals) and terminal emulators (e.g.,
4495 TeraTerm) allow the character generated by the @key{Backspace} key to be
4496 changed from a setup menu.
4497
4498 @item
4499 You may be able to get a keyboard that is completely programmable, or a
4500 terminal emulator that supports remapping of any key to any other key.
4501
4502 @item
4503 With Emacs 21.1 and later, you can control the effect of the
4504 @key{Backspace} and @key{Delete} keys, on both dumb terminals and a
4505 windowed displays, by customizing the option
4506 @code{normal-erase-is-backspace-mode}, or by invoking @kbd{M-x
4507 normal-erase-is-backspace}. See the documentation of these symbols
4508 (@pxref{Emacs Lisp documentation}) for more info.
4509
4510 @item
4511 It is possible to swap the @key{Backspace} and @key{DEL} keys inside
4512 Emacs:
4513
4514 @lisp
4515 (keyboard-translate ?\C-h ?\C-?)
4516 @end lisp
4517
4518 @noindent
4519 This is the recommended method of forcing @key{Backspace} to act as
4520 @key{DEL}, because it works even in modes which bind @key{DEL} to
4521 something other than @code{delete-backward-char}.
4522
4523 Similarly, you could remap @key{DEL} to act as @kbd{C-d}, which by
4524 default deletes forward:
4525
4526 @lisp
4527 (keyboard-translate ?\C-? ?\C-d)
4528 @end lisp
4529
4530 @xref{Swapping keys}, for further details about @code{keyboard-translate}.
4531
4532 @item
4533 Another approach is to switch key bindings and put help on @kbd{C-x h}
4534 instead:
4535
4536 @lisp
4537 (global-set-key "\C-h" 'delete-backward-char)
4538
4539 ;; overrides mark-whole-buffer
4540 (global-set-key "\C-xh" 'help-command)
4541 @end lisp
4542
4543 @noindent
4544 This method is not recommended, though: it only solves the problem for
4545 those modes which bind @key{DEL} to @code{delete-backward-char}. Modes
4546 which bind @key{DEL} to something else, such as @code{view-mode}, will
4547 not work as you expect when you press the @key{Backspace} key. For this
4548 reason, we recommend the @code{keyboard-translate} method, shown
4549 above.
4550
4551 Other popular key bindings for help are @kbd{M-?} and @kbd{C-x ?}.
4552 @end itemize
4553
4554 Don't try to bind @key{DEL} to @code{help-command}, because there are
4555 many modes that have local bindings of @key{DEL} that will interfere.
4556
4557 @end itemize
4558
4559 When Emacs 21 or later runs on a windowed display, it binds the
4560 @key{Delete} key to a command which deletes the character at point, to
4561 make Emacs more consistent with keyboard operation on these systems.
4562
4563 For more information about troubleshooting this problem, see @ref{DEL
4564 Does Not Delete, , If @key{DEL} Fails to Delete, emacs, The GNU Emacs
4565 Manual}.
4566
4567 @node stty and Backspace key, Swapping keys, Backspace invokes help, Key bindings
4568 @section Why doesn't Emacs look at the @file{stty} settings for @key{Backspace} vs. @key{Delete}?
4569 @cindex @file{stty} and Emacs
4570 @cindex Backspace and @file{stty}
4571 @cindex Delete and @file{stty}
4572
4573 Good question!
4574
4575 @c FIXME: RMS explained the reasons for this on emacs-hackers. It's
4576 @c probably worth putting that explanation here.
4577
4578 @node Swapping keys, Producing C-XXX with the keyboard, stty and Backspace key, Key bindings
4579 @section How do I swap two keys?
4580 @cindex Swapping keys
4581 @cindex Keys, swapping
4582 @cindex @code{keyboard-translate}
4583
4584 You can swap two keys (or key sequences) by using the
4585 @code{keyboard-translate} function. For example, to turn @kbd{C-h}
4586 into @key{DEL} and @key{DEL} to @kbd{C-h}, use
4587
4588 @lisp
4589 (keyboard-translate ?\C-h ?\C-?) ; translate `C-h' to DEL
4590 (keyboard-translate ?\C-? ?\C-h) ; translate DEL to `C-h'.
4591 @end lisp
4592
4593 @noindent
4594 The first key sequence of the pair after the function identifies what is
4595 produced by the keyboard; the second, what is matched for in the
4596 keymaps.
4597
4598 However, in the specific case of @kbd{C-h} and @key{DEL}, you should
4599 toggle @code{normal-erase-is-backspace-mode} instead of calling
4600 @code{keyboard-translate}. @inforef{DEL Does Not Delete, DEL Does Not Delete,
4601 emacs}.
4602
4603 Keyboard translations are not the same as key bindings in keymaps.
4604 Emacs contains numerous keymaps that apply in different situations, but
4605 there is only one set of keyboard translations, and it applies to every
4606 character that Emacs reads from the terminal. Keyboard translations
4607 take place at the lowest level of input processing; the keys that are
4608 looked up in keymaps contain the characters that result from keyboard
4609 translation.
4610
4611 @node Producing C-XXX with the keyboard, No Meta key, Swapping keys, Key bindings
4612 @section How do I produce C-XXX with my keyboard?
4613 @cindex Producing control characters
4614 @cindex Generating control characters
4615 @cindex Control characters, generating
4616
4617 On terminals (but not under X), some common ``aliases'' are:
4618
4619 @table @asis
4620
4621 @item @kbd{C-2} or @kbd{C-@key{SPC}}
4622 @kbd{C-@@}
4623
4624 @item @kbd{C-6}
4625 @kbd{C-^}
4626
4627 @item @kbd{C-7} or @kbd{C-S--}
4628 @kbd{C-_}
4629
4630 @item @kbd{C-4}
4631 @kbd{C-\}
4632
4633 @item @kbd{C-5}
4634 @kbd{C-]}
4635
4636 @item @kbd{C-/}
4637 @kbd{C-?}
4638
4639 @end table
4640
4641 Often other aliases exist; use the @kbd{C-h c} command and try
4642 @key{CTRL} with all of the digits on your keyboard to see what gets
4643 generated. You can also try the @kbd{C-h w} command if you know the
4644 name of the command.
4645
4646 @node No Meta key, No Escape key, Producing C-XXX with the keyboard, Key bindings
4647 @section What if I don't have a @key{Meta} key?
4648 @cindex No @key{Meta} key
4649 @cindex @key{Meta} key, what to do if you lack it
4650
4651 On many keyboards, the @key{Alt} key acts as @key{Meta}, so try it.
4652
4653 Instead of typing @kbd{M-a}, you can type @kbd{@key{ESC} a}. In fact,
4654 Emacs converts @kbd{M-a} internally into @kbd{@key{ESC} a} anyway
4655 (depending on the value of @code{meta-prefix-char}). Note that you
4656 press @key{Meta} and @key{a} together, but with @key{ESC}, you press
4657 @key{ESC}, release it, and then press @key{a}.
4658
4659 @node No Escape key, Compose Character, No Meta key, Key bindings
4660 @section What if I don't have an @key{Escape} key?
4661 @cindex No Escape key
4662 @cindex Lacking an Escape key
4663 @cindex Escape key, lacking
4664
4665 Type @kbd{C-[} instead. This should send @acronym{ASCII} code 27 just like an
4666 Escape key would. @kbd{C-3} may also work on some terminal (but not
4667 under X). For many terminals (notably DEC terminals) @key{F11}
4668 generates @key{ESC}. If not, the following form can be used to bind it:
4669
4670 @lisp
4671 ;; F11 is the documented ESC replacement on DEC terminals.
4672 (define-key function-key-map [f11] [?\e])
4673 @end lisp
4674
4675 @node Compose Character, Binding combinations of modifiers and function keys, No Escape key, Key bindings
4676 @section Can I make my @key{Compose Character} key behave like a @key{Meta} key?
4677 @cindex @key{Compose Character} key, using as @key{Meta}
4678 @cindex @key{Meta}, using @key{Compose Character} for
4679
4680 On a dumb terminal such as a VT220, no. It is rumored that certain
4681 VT220 clones could have their @key{Compose} key configured this way. If
4682 you're using X, you might be able to do this with the @code{xmodmap}
4683 command.
4684
4685 @node Binding combinations of modifiers and function keys, Meta key does not work in xterm, Compose Character, Key bindings
4686 @section How do I bind a combination of modifier key and function key?
4687 @cindex Modifiers and function keys
4688 @cindex Function keys and modifiers
4689 @cindex Binding modifiers and function keys
4690
4691 With Emacs 19 and later, you can represent modified function keys in
4692 vector format by adding prefixes to the function key symbol. For
4693 example (from the on-line documentation):
4694
4695 @lisp
4696 (global-set-key [?\C-x right] 'forward-page)
4697 @end lisp
4698
4699 @noindent
4700 where @samp{?\C-x} is the Lisp character constant for the character @kbd{C-x}.
4701
4702 You can use the modifier keys @key{Control}, @key{Meta}, @key{Hyper},
4703 @key{Super}, @key{Alt}, and @key{Shift} with function keys. To
4704 represent these modifiers, prepend the strings @samp{C-}, @samp{M-},
4705 @samp{H-}, @samp{s-}, @samp{A-}, and @samp{S-} to the symbol name. Here
4706 is how to make @kbd{H-M-RIGHT} move forward a word:
4707
4708 @lisp
4709 (global-set-key [H-M-right] 'forward-word)
4710 @end lisp
4711
4712 @itemize @bullet
4713
4714 @item
4715 Not all modifiers are permitted in all situations. @key{Hyper},
4716 @key{Super}, and @key{Alt} are not available on Unix character
4717 terminals. Non-@acronym{ASCII} keys and mouse events (e.g. @kbd{C-=} and
4718 @kbd{Mouse-1}) also fall under this category.
4719
4720 @end itemize
4721
4722 @xref{Binding keys to commands}, for general key binding instructions.
4723
4724 @node Meta key does not work in xterm, ExtendChar key does not work as Meta, Binding combinations of modifiers and function keys, Key bindings
4725 @section Why doesn't my @key{Meta} key work in an @code{xterm} window?
4726 @cindex @key{Meta} key and @code{xterm}
4727 @cindex Xterm and @key{Meta} key
4728
4729 @inforef{Unibyte Mode, Single-Byte Character Set Support, emacs}.
4730
4731 If the advice in the Emacs manual fails, try all of these methods before
4732 asking for further help:
4733
4734 @itemize @bullet
4735
4736 @item
4737 You may have big problems using @code{mwm} as your window manager.
4738 (Does anyone know a good generic solution to allow the use of the
4739 @key{Meta} key in Emacs with @file{mwm}?)
4740
4741 @item
4742 For X11: Make sure it really is a @key{Meta} key. Use @code{xev} to
4743 find out what keysym your @key{Meta} key generates. It should be either
4744 @code{Meta_L} or @code{Meta_R}. If it isn't, use @file{xmodmap} to fix
4745 the situation. If @key{Meta} does generate @code{Meta_L} or
4746 @code{Meta_R}, but @kbd{M-x} produces a non-@acronym{ASCII} character, put this in
4747 your @file{~/.Xdefaults} file:
4748
4749 @example
4750 XTerm*eightBitInput: false
4751 XTerm*eightBitOutput: true
4752 @end example
4753
4754 @item
4755 Make sure the @code{pty} the @code{xterm} is using is passing 8 bit
4756 characters. @samp{stty -a} (or @samp{stty everything}) should show
4757 @samp{cs8} somewhere. If it shows @samp{cs7} instead, use @samp{stty
4758 cs8 -istrip} (or @samp{stty pass8}) to fix it.
4759
4760 @item
4761 If there is an @code{rlogin} connection between @code{xterm} and Emacs, the
4762 @samp{-8} argument may need to be given to rlogin to make it pass all 8 bits
4763 of every character.
4764
4765 @item
4766 If Emacs is running on Ultrix, it is reported that evaluating
4767 @code{(set-input-mode t nil)} helps.
4768
4769 @item
4770 If all else fails, you can make @code{xterm} generate @kbd{@key{ESC} W} when
4771 you type @kbd{M-W}, which is the same conversion Emacs would make if it
4772 got the @kbd{M-W} anyway. In X11R4, the following resource
4773 specification will do this:
4774
4775 @example
4776 XTerm.VT100.EightBitInput: false
4777 @end example
4778
4779 @noindent
4780 (This changes the behavior of the @code{insert-eight-bit} action.)
4781
4782 With older @code{xterm}s, you can specify this behavior with a translation:
4783
4784 @example
4785 XTerm.VT100.Translations: #override \
4786 Meta<KeyPress>: string(0x1b) insert()
4787 @end example
4788
4789 @noindent
4790 You might have to replace @samp{Meta} with @samp{Alt}.
4791
4792 @end itemize
4793
4794 @node ExtendChar key does not work as Meta, SPC no longer completes file names, Meta key does not work in xterm, Key bindings
4795 @section Why doesn't my @key{ExtendChar} key work as a @key{Meta} key under HP-UX 8.0 and 9.x?
4796 @cindex @key{ExtendChar} key as @key{Meta}
4797 @cindex @key{Meta}, using @key{ExtendChar} for
4798 @cindex HP-UX, the @key{ExtendChar} key
4799
4800 This is a result of an internationalization extension in X11R4 and the
4801 fact that HP is now using this extension. Emacs assumes that the
4802 @code{XLookupString} function returns the same result regardless of the
4803 @key{Meta} key state which is no longer necessarily true. Until Emacs
4804 is fixed, the temporary kludge is to run this command after each time
4805 the X server is started but preferably before any xterm clients are:
4806
4807 @example
4808 xmodmap -e 'remove mod1 = Mode_switch'
4809 @end example
4810
4811 @c FIXME: Emacs 21 supports I18N in X11; does that mean that this bug is
4812 @c solved?
4813
4814 This will disable the use of the extra keysyms systemwide, which may be
4815 undesirable if you actually intend to use them.
4816
4817 @node SPC no longer completes file names, , ExtendChar key does not work as Meta, Key bindings
4818 @section Why doesn't SPC complete file names anymore?
4819 @cindex @kbd{SPC} file name completion
4820
4821 Starting with Emacs 22.1, @kbd{SPC} no longer completes file names in
4822 the minibuffer, so that file names with embedded spaces could be typed
4823 without the need to quote the spaces.
4824
4825 You can get the old behavior by binding @kbd{SPC} to
4826 @code{minibuffer-complete-word} in the minibuffer, as follows:
4827
4828 @lisp
4829 (define-key minibuffer-local-filename-completion-map (kbd "SPC")
4830 'minibuffer-complete-word)
4831
4832 (define-key minibuffer-local-must-match-filename-map (kbd "SPC")
4833 'minibuffer-complete-word)
4834 @end lisp
4835
4836 @c ------------------------------------------------------------
4837 @node Alternate character sets, Mail and news, Key bindings, Top
4838 @chapter Alternate character sets
4839 @cindex Alternate character sets
4840
4841 @menu
4842 * Emacs does not display 8-bit characters::
4843 * Inputting eight-bit characters::
4844 * Kanji and Chinese characters::
4845 * Right-to-left alphabets::
4846 * How to add fonts::
4847 @end menu
4848
4849 @node Emacs does not display 8-bit characters, Inputting eight-bit characters, Alternate character sets, Alternate character sets
4850 @section How do I make Emacs display 8-bit characters?
4851 @cindex Displaying eight-bit characters
4852 @cindex Eight-bit characters, displaying
4853
4854 @inforef{Unibyte Mode, Single-byte Character Set
4855 Support, emacs}. On a Unix, when Emacs runs on a text-only terminal
4856 display or is invoked with @samp{emacs -nw}, you typically need to use
4857 @code{set-terminal-coding-system} to tell Emacs what the terminal can
4858 display, even after setting the language environment; otherwise
4859 non-@acronym{ASCII} characters will display as @samp{?}. On other operating
4860 systems, such as MS-DOS and MS-Windows, Emacs queries the OS about the
4861 character set supported by the display, and sets up the required
4862 terminal coding system automatically.
4863
4864 @node Inputting eight-bit characters, Kanji and Chinese characters, Emacs does not display 8-bit characters, Alternate character sets
4865 @section How do I input eight-bit characters?
4866 @cindex Entering eight-bit characters
4867 @cindex Eight-bit characters, entering
4868 @cindex Input, 8-bit characters
4869
4870 Various methods are available for input of eight-bit characters. See
4871 @inforef{Unibyte Mode, Single-byte Character Set
4872 Support, emacs}. For more sophisticated methods, @inforef{Input
4873 Methods, Input Methods, emacs}.
4874
4875 @node Kanji and Chinese characters, Right-to-left alphabets, Inputting eight-bit characters, Alternate character sets
4876 @section Where can I get an Emacs that handles kanji, Chinese, or other Far-Eastern character sets?
4877 @cindex Kanji, handling with Emacs
4878 @cindex Chinese, handling with Emacs
4879 @cindex Japanese, handling with Emacs
4880 @cindex Korean, handling with Emacs
4881
4882 Emacs 20 and later includes many of the features of MULE, the MULtilingual
4883 Enhancement to Emacs. @xref{Installing Emacs}, for information on where
4884 to find and download the latest version of Emacs.
4885
4886 @node Right-to-left alphabets, How to add fonts, Kanji and Chinese characters, Alternate character sets
4887 @section Where is an Emacs that can handle Semitic (right-to-left) alphabets?
4888 @cindex Right-to-left alphabets
4889 @cindex Hebrew, handling with Emacs
4890 @cindex Semitic alphabets
4891 @cindex Arabic alphabets
4892
4893 Emacs 20 and later supports Hebrew characters (ISO 8859-8), but does not
4894 yet support right-to-left character entry and display.
4895
4896 @email{joel@@exc.com, Joel M. Hoffman} has written a Lisp package called
4897 @file{hebrew.el} that allows right-to-left editing of Hebrew. It
4898 reportedly works out of the box with Emacs 19, but requires patches for
4899 Emacs 18. Write to Joel if you want the patches or package.
4900
4901 @c FIXME: Should we mention Ehud Karni's package?
4902
4903 @file{hebrew.el} requires a Hebrew screen font, but no other hardware support.
4904 Joel has a screen font for PCs running MS-DOS or GNU/Linux.
4905
4906 You might also try querying @code{archie} for files named with
4907 @file{hebrew}; several ftp sites in Israel may also have the necessary
4908 files.
4909
4910 @node How to add fonts, , Right-to-left alphabets, Alternate character sets
4911 @section How do I add fonts for use with Emacs?
4912 @cindex add fonts for use with Emacs
4913 @cindex intlfonts
4914
4915 First, download and install the BDF font files and any auxiliary
4916 packages they need. The GNU Intlfonts distribution can be found on
4917 @uref{http://directory.fsf.org/localization/intlfonts.html, the GNU
4918 Software Directory Web site}.
4919
4920 Next, if you are on X Window system, issue the following two commands
4921 from the shell's prompt:
4922
4923 @example
4924 xset +fp /usr/local/share/emacs/fonts
4925 xset fp rehash
4926 @end example
4927
4928 @noindent
4929 (Modify the first command if you installed the fonts in a directory
4930 that is not @file{/usr/local/share/emacs/fonts}.) You also need to
4931 arrange for these two commands to run whenever you log in, e.g., by
4932 adding them to your window-system startup file, such as
4933 @file{~/.xsessionrc} or @file{~/.gnomerc}.
4934
4935 Now, add the following line to your @file{~/.emacs} init file:
4936
4937 @lisp
4938 (add-to-list 'bdf-directory-list "/usr/share/emacs/fonts/bdf")
4939 @end lisp
4940
4941 @noindent
4942 (Again, modify the file name if you installed the fonts elsewhere.)
4943
4944 Finally, if you wish to use the installed fonts with @code{ps-print},
4945 add the following line to your @file{~/.emacs}:
4946
4947 @lisp
4948 (setq ps-multibyte-buffer 'bdf-font-except-latin)
4949 @end lisp
4950
4951 A few additional steps are necessary for MS-Windows; they are listed
4952 below.
4953
4954 First, make sure @emph{all} the directories with BDF font files are
4955 mentioned in @code{bdf-directory-list}. On Unix and GNU/Linux
4956 systems, one normally runs @kbd{make install} to install the BDF fonts
4957 in the same directory. By contrast, Windows users typically don't run
4958 the Intlfonts installation command, but unpack the distribution in
4959 some directory, which leaves the BDF fonts in its subdirectories. For
4960 example, assume that you unpacked Intlfonts in @file{C:/Intlfonts};
4961 then you should set @code{bdf-directory-list} as follows:
4962
4963 @lisp
4964 (setq bdf-directory-list
4965 '("C:/Intlfonts/Asian"
4966 "C:/Intlfonts/Chinese" "C:/Intlfonts/Chinese.X"
4967 "C:/Intlfonts/Chinese.BIG" "C:/Intlfonts/Ethiopic"
4968 "C:/Intlfonts/European" "C:/Intlfonts/European.BIG"
4969 "C:/Intlfonts/Japanese" "C:/Intlfonts/Japanese.X"
4970 "C:/Intlfonts/Japanese.BIG" "C:/Intlfonts/Korean.X"
4971 "C:/Intlfonts/Misc"))
4972 @end lisp
4973
4974 @cindex @code{w32-bdf-filename-alist}
4975 @cindex @code{w32-find-bdf-fonts}
4976 Next, you need to set up the variable @code{w32-bdf-filename-alist} to
4977 an alist of the BDF fonts and their corresponding file names.
4978 Assuming you have set @code{bdf-directory-list} to name all the
4979 directories with the BDF font files, the following Lisp snippet will
4980 set up @code{w32-bdf-filename-alist}:
4981
4982 @lisp
4983 (setq w32-bdf-filename-alist
4984 (w32-find-bdf-fonts bdf-directory-list))
4985 @end lisp
4986
4987 Now, create fontsets for the BDF fonts:
4988
4989 @lisp
4990 (create-fontset-from-fontset-spec
4991 "-*-fixed-medium-r-normal-*-16-*-*-*-c-*-fontset-bdf,
4992 japanese-jisx0208:-*-*-medium-r-normal-*-16-*-*-*-c-*-jisx0208.1983-*,
4993 katakana-jisx0201:-*-*-medium-r-normal-*-16-*-*-*-c-*-jisx0201*-*,
4994 latin-jisx0201:-*-*-medium-r-normal-*-16-*-*-*-c-*-jisx0201*-*,
4995 japanese-jisx0208-1978:-*-*-medium-r-normal-*-16-*-*-*-c-*-jisx0208.1978-*,
4996 thai-tis620:-misc-fixed-medium-r-normal--16-160-72-72-m-80-tis620.2529-1,
4997 lao:-misc-fixed-medium-r-normal--16-160-72-72-m-80-MuleLao-1,
4998 tibetan-1-column:-TibMdXA-fixed-medium-r-normal--16-160-72-72-m-80-MuleTibetan-1,
4999 ethiopic:-Admas-Ethiomx16f-Medium-R-Normal--16-150-100-100-M-160-Ethiopic-Unicode,
5000 tibetan:-TibMdXA-fixed-medium-r-normal--16-160-72-72-m-160-MuleTibetan-0")
5001 @end lisp
5002
5003 Many of the international bdf fonts from Intlfonts are type 0, and
5004 therefore need to be added to font-encoding-alist:
5005
5006 @lisp
5007 (setq font-encoding-alist
5008 (append '(("MuleTibetan-0" (tibetan . 0))
5009 ("GB2312" (chinese-gb2312 . 0))
5010 ("JISX0208" (japanese-jisx0208 . 0))
5011 ("JISX0212" (japanese-jisx0212 . 0))
5012 ("VISCII" (vietnamese-viscii-lower . 0))
5013 ("KSC5601" (korean-ksc5601 . 0))
5014 ("MuleArabic-0" (arabic-digit . 0))
5015 ("MuleArabic-1" (arabic-1-column . 0))
5016 ("MuleArabic-2" (arabic-2-column . 0)))
5017 font-encoding-alist))
5018 @end lisp
5019
5020 You can now use the Emacs font menu to select the @samp{bdf: 16-dot medium}
5021 fontset, or you can select it by setting the default font in your
5022 @file{~/.emacs}:
5023
5024 @lisp
5025 (set-default-font "fontset-bdf")
5026 @end lisp
5027
5028
5029 @c ------------------------------------------------------------
5030 @node Mail and news, Concept index, Alternate character sets, Top
5031 @chapter Mail and news
5032 @cindex Mail and news
5033
5034 @menu
5035 * Changing the included text prefix::
5036 * Saving a copy of outgoing mail::
5037 * Expanding aliases when sending mail::
5038 * Rmail thinks all messages are one big one::
5039 * Sorting the messages in an Rmail folder::
5040 * Rmail writes to /usr/spool/mail::
5041 * Recovering mail files when Rmail munges them::
5042 * Replying to the sender of a message::
5043 * MIME with Emacs mail packages::
5044 * Automatically starting a mail or news reader::
5045 * Reading news with Emacs::
5046 * Gnus does not work with NNTP::
5047 * Viewing articles with embedded underlining::
5048 * Saving a multi-part Gnus posting::
5049 * Starting Gnus faster::
5050 * Catching up in all newsgroups::
5051 * Killing based on nonstandard headers::
5052 * Removing flashing messages::
5053 * Catch-up is slow in Gnus::
5054 * Gnus hangs for a long time::
5055 * Learning more about Gnus::
5056 @end menu
5057
5058 @node Changing the included text prefix, Saving a copy of outgoing mail, Mail and news, Mail and news
5059 @section How do I change the included text prefix in mail/news followups?
5060 @cindex Prefix in mail/news followups, changing
5061 @cindex Included text prefix, changing
5062 @cindex Setting the included text character
5063 @cindex Quoting in mail messages
5064
5065 If you read mail with Rmail or news with Gnus, set the variable
5066 @code{mail-yank-prefix}. For VM, set @code{vm-included-text-prefix}.
5067 For mh-e, set @code{mh-ins-buf-prefix}.
5068
5069 For fancier control of citations, use Supercite (part of Emacs).
5070
5071 To prevent Emacs from including various headers of the replied-to
5072 message, set the value of @code{mail-yank-ignored-headers} to an
5073 appropriate regexp.
5074
5075 @node Saving a copy of outgoing mail, Expanding aliases when sending mail, Changing the included text prefix, Mail and news
5076 @section How do I save a copy of outgoing mail?
5077 @cindex Saving a copy of outgoing mail
5078 @cindex Copying outgoing mail to a file
5079 @cindex Filing outgoing mail
5080 @cindex Automatic filing of outgoing mail
5081 @cindex Mail, saving outgoing automatically
5082
5083 You can either mail yourself a copy by including a @samp{BCC} header in the
5084 mail message, or store a copy of the message directly to a file by
5085 including an @samp{FCC} header.
5086
5087 If you use standard mail, you can automatically create a @samp{BCC} to
5088 yourself by putting
5089
5090 @lisp
5091 (setq mail-self-blind t)
5092 @end lisp
5093
5094 @noindent
5095 in your @file{.emacs} file. You can automatically include an @samp{FCC}
5096 field by putting something like the following in your @file{.emacs}
5097 file:
5098
5099 @lisp
5100 (setq mail-archive-file-name (expand-file-name "~/outgoing"))
5101 @end lisp
5102
5103 The output file will be in Unix mail format, which can be read directly
5104 by VM, but not always by Rmail. @xref{Learning how to do something}.
5105
5106 If you use @code{mh-e}, add an @samp{FCC} or @samp{BCC} field to your
5107 components file.
5108
5109 It does not work to put @samp{set record filename} in the @file{.mailrc}
5110 file.
5111
5112 @node Expanding aliases when sending mail, Rmail thinks all messages are one big one, Saving a copy of outgoing mail, Mail and news
5113 @section Why doesn't Emacs expand my aliases when sending mail?
5114 @cindex Expanding aliases when sending mail
5115 @cindex Mail alias expansion
5116 @cindex Sending mail with aliases
5117
5118 @itemize @bullet
5119
5120 @item
5121 You must separate multiple addresses in the headers of the mail buffer
5122 with commas. This is because Emacs supports RFC822 standard addresses
5123 like this one:
5124
5125 @example
5126 To: Willy Smith <wks@@xpnsv.lwyrs.com>
5127 @end example
5128
5129 However, you do not need to---and probably should not, unless your
5130 system's version of @file{/usr/ucb/mail} (a.k.a.@: @code{mailx})
5131 supports RFC822---separate addresses with commas in your
5132 @file{~/.mailrc} file.
5133
5134 @item
5135 Emacs normally only reads the @file{.mailrc} file once per session,
5136 when you start to compose your first mail message. If you edit
5137 @file{.mailrc}, you can type @kbd{M-x rebuild-mail-abbrevs @key{RET}} to
5138 make Emacs reread @file{~/.mailrc}.
5139
5140 @item
5141 If you like, you can expand mail aliases as abbrevs, as soon as you
5142 type them in. To enable this feature, execute the following:
5143
5144 @lisp
5145 (add-hook 'mail-mode-hook 'mail-abbrevs-setup)
5146 @end lisp
5147
5148 Note that the aliases are expanded automatically only after you type
5149 @key{RET} or a punctuation character (e.g. @kbd{,}). You can force their
5150 expansion by moving point to the end of the alias and typing @kbd{C-x a e}
5151 (@kbd{M-x expand-abbrev}).
5152 @end itemize
5153
5154 @node Rmail thinks all messages are one big one, Sorting the messages in an Rmail folder, Expanding aliases when sending mail, Mail and news
5155 @section Why does Rmail think all my saved messages are one big message?
5156 @cindex Rmail thinks all messages are one large message
5157
5158 A file created through the @samp{FCC} field in a message is in Unix mail
5159 format, not the format that Rmail uses (BABYL format). Rmail will try
5160 to convert a Unix mail file into BABYL format on input, but sometimes it
5161 makes errors. For guaranteed safety, you can make the
5162 @file{saved-messages} file be an inbox for your Rmail file by using the
5163 function @code{set-rmail-inbox-list}.
5164
5165 @node Sorting the messages in an Rmail folder, Rmail writes to /usr/spool/mail, Rmail thinks all messages are one big one, Mail and news
5166 @section How can I sort the messages in my Rmail folder?
5167 @cindex Rmail, sorting messages in
5168 @cindex Folder, sorting messages in an Rmail
5169 @cindex Sorting messages in an Rmail folder
5170
5171 In Rmail, type @kbd{C-c C-s C-h} to get a list of sorting functions
5172 and their key bindings.
5173
5174 @node Rmail writes to /usr/spool/mail, Recovering mail files when Rmail munges them, Sorting the messages in an Rmail folder, Mail and news
5175 @section Why does Rmail need to write to @file{/usr/spool/mail}?
5176 @cindex Rmail and @file{/usr/spool/mail}
5177 @cindex @file{/usr/spool/mail} and Rmail
5178
5179 This is the behavior of the @code{movemail} program which Rmail uses.
5180 This indicates that @code{movemail} is configured to use lock files.
5181
5182 RMS writes:
5183
5184 @quotation
5185 Certain systems require lock files to interlock access to mail files.
5186 On these systems, @code{movemail} must write lock files, or you risk losing
5187 mail. You simply must arrange to let @code{movemail} write them.
5188
5189 Other systems use the @code{flock} system call to interlock access. On
5190 these systems, you should configure @code{movemail} to use @code{flock}.
5191 @end quotation
5192
5193 @node Recovering mail files when Rmail munges them, Replying to the sender of a message, Rmail writes to /usr/spool/mail, Mail and news
5194 @section How do I recover my mail files after Rmail munges their format?
5195 @cindex Recovering munged mail files
5196 @cindex Rmail munged my files
5197 @cindex Mail files, recovering those munged by Rmail
5198
5199 If you have just done @kbd{M-x rmail-input} on a file and you don't want
5200 to save it in Rmail's format (called BABYL), just kill the buffer (with
5201 @kbd{C-x k}).
5202
5203 @cindex Exporting messages as Unix mail files
5204 If you typed @kbd{M-x rmail} and it read some messages out of your inbox
5205 and you want to put them in a Unix mail file, use @kbd{C-o} on each
5206 message.
5207
5208 @cindex Converting from BABYL to Unix mail format
5209 @cindex @code{unrmail} command
5210 If you want to convert an existing file from BABYL format to Unix mail
5211 format, use the command @kbd{M-x unrmail}: it will prompt you for the
5212 input and output file names.
5213
5214 @pindex b2m
5215 Alternatively, you could use the @code{b2m} program supplied with
5216 Emacs. @code{b2m} is a filter, and is used like this:
5217
5218 @example
5219 b2m < @var{babyl-file} > @var{mbox-file}
5220 @end example
5221
5222 @noindent
5223 where @var{babyl-file} is the name of the BABYL file, and
5224 @var{mbox-file} is the name of the file where the converted mail will
5225 be written.
5226
5227 @node Replying to the sender of a message, MIME with Emacs mail packages, Recovering mail files when Rmail munges them, Mail and news
5228 @section How can I force Rmail to reply to the sender of a message, but not the other recipients?
5229 @cindex Replying only to the sender of a message
5230 @cindex Sender, replying only to
5231 @cindex Rmail, replying to the sender of a message in
5232
5233 @email{isaacson@@seas.upenn.edu, Ron Isaacson} says: When you hit
5234 @key{r} to reply in Rmail, by default it CCs all of the original
5235 recipients (everyone on the original @samp{To} and @samp{CC}
5236 lists). With a prefix argument (i.e., typing @kbd{C-u} before @key{r}),
5237 it replies only to the sender. However, going through the whole
5238 @kbd{C-u} business every time you want to reply is a pain. This is the
5239 best fix I've been able to come up with:
5240
5241 @lisp
5242 (defun rmail-reply-t ()
5243 "Reply only to the sender of the current message. (See rmail-reply.)"
5244 (interactive)
5245 (rmail-reply t))
5246
5247 (add-hook 'rmail-mode-hook
5248 (lambda ()
5249 (define-key rmail-mode-map "r" 'rmail-reply-t)
5250 (define-key rmail-mode-map "R" 'rmail-reply)))
5251 @end lisp
5252
5253 @node MIME with Emacs mail packages, Automatically starting a mail or news reader, Replying to the sender of a message, Mail and news
5254 @section How can I get my favorite Emacs mail package to support MIME?
5255 @cindex MIME and Emacs mail packages
5256 @cindex Mail packages and MIME
5257 @cindex FAQ for MIME and Emacs
5258
5259 Version 6.x of VM supports MIME. @xref{VM}. Gnus supports MIME in mail
5260 and news messages as of version 5.8.1 (Pterodactyl). Rmail has limited
5261 support for single-part MIME messages beginning with Emacs 20.3.
5262
5263 @node Automatically starting a mail or news reader, Reading news with Emacs, MIME with Emacs mail packages, Mail and news
5264 @section How do I make Emacs automatically start my mail/news reader?
5265 @cindex Mail reader, starting automatically
5266 @cindex News reader, starting automatically
5267 @cindex Starting mail/news reader automatically
5268
5269 To start Emacs in Gnus:
5270
5271 @example
5272 emacs -f gnus
5273 @end example
5274
5275 @noindent
5276 in Rmail:
5277
5278 @example
5279 emacs -f rmail
5280 @end example
5281
5282 A more convenient way to start with Gnus:
5283
5284 @example
5285 alias gnus 'emacs -f gnus'
5286 gnus
5287 @end example
5288
5289 It is probably unwise to automatically start your mail or news reader
5290 from your @file{.emacs} file. This would cause problems if you needed to run
5291 two copies of Emacs at the same time. Also, this would make it difficult for
5292 you to start Emacs quickly when you needed to.
5293
5294 @node Reading news with Emacs, Gnus does not work with NNTP, Automatically starting a mail or news reader, Mail and news
5295 @section How do I read news under Emacs?
5296 @cindex Reading news under Emacs
5297 @cindex Usenet reader in Emacs
5298 @cindex Gnus newsreader
5299
5300 Use @kbd{M-x gnus}. It is documented in Info (@pxref{Learning how to do
5301 something}).
5302
5303 @node Gnus does not work with NNTP, Viewing articles with embedded underlining, Reading news with Emacs, Mail and news
5304 @section Why doesn't Gnus work via NNTP?
5305 @cindex Gnus and NNTP
5306 @cindex NNTP, Gnus fails to work with
5307
5308 There is a bug in NNTP version 1.5.10, such that when multiple requests
5309 are sent to the NNTP server, the server only handles the first one
5310 before blocking waiting for more input which never comes. NNTP version
5311 1.5.11 claims to fix this.
5312
5313 You can work around the bug inside Emacs like this:
5314
5315 @lisp
5316 (setq nntp-maximum-request 1)
5317 @end lisp
5318
5319 You can find out what version of NNTP your news server is running by
5320 telnetting to the NNTP port (usually 119) on the news server machine
5321 (i.e., @kbd{telnet server-machine 119}). The server should give its
5322 version number in the welcome message. Type @kbd{quit} to get out.
5323
5324 @xref{Spontaneous entry into isearch-mode}, for some additional ideas.
5325
5326 @node Viewing articles with embedded underlining, Saving a multi-part Gnus posting, Gnus does not work with NNTP, Mail and news
5327 @section How do I view news articles with embedded underlining (e.g., ClariNews)?
5328 @cindex Underlining, embedded in news articles
5329 @cindex News articles with embedded underlining
5330 @cindex Embedded underlining in news articles
5331
5332 Underlining appears like this:
5333
5334 @example
5335 _^Hu_^Hn_^Hd_^He_^Hr_^Hl_^Hi_^Hn_^Hi_^Hn_^Hg
5336 @end example
5337
5338 @email{abraham@@dina.kvl.dk, Per Abrahamsen} suggests using the following
5339 code, which uses the underline face to turn such text into true
5340 underlining, inconjunction with Gnus:
5341
5342 @lisp
5343 (defun gnus-article-prepare-overstrike ()
5344 ;; Prepare article for overstrike commands.
5345 (save-excursion
5346 (set-buffer gnus-article-buffer)
5347 (let ((buffer-read-only nil))
5348 (goto-char (point-min))
5349 (while (search-forward "\b" nil t)
5350 (let ((next (following-char))
5351 (previous (char-after (- (point) 2))))
5352 (cond ((eq next previous)
5353 (delete-region (- (point) 2) (point))
5354 (put-text-property (point) (1+ (point))
5355 'face 'bold))
5356 ((eq next ?_)
5357 (delete-region (1- (point)) (1+ (point)))
5358 (put-text-property (1- (point)) (point)
5359 'face 'underline))
5360 ((eq previous ?_)
5361 (delete-region (- (point) 2) (point))
5362 (put-text-property (point) (1+ (point))
5363 'face 'underline))))))))
5364
5365 (add-hook 'gnus-article-prepare-hook 'gnus-article-prepare-overstrike)
5366 @end lisp
5367
5368 Latest versions of Gnus do such a conversion automatically.
5369
5370 If you prefer to do away with underlining altogether, you can
5371 destructively remove it with @kbd{M-x ununderline-region}; do this
5372 automatically via
5373
5374 @lisp
5375 (add-hook 'gnus-article-prepare-hook
5376 (lambda () (ununderline-region (point-min) (point-max))))
5377 @end lisp
5378
5379 @node Saving a multi-part Gnus posting, Starting Gnus faster, Viewing articles with embedded underlining, Mail and news
5380 @section How do I save all the items of a multi-part posting in Gnus?
5381 @cindex Multi-part postings in Gnus, saving
5382 @cindex Saving multi-part postings in Gnus
5383 @cindex Gnus, saving multi-part postings in
5384
5385 Use @code{gnus-uu}. Type @kbd{C-c C-v C-h} in the Gnus summary buffer
5386 to see a list of available commands.
5387
5388 @node Starting Gnus faster, Catching up in all newsgroups, Saving a multi-part Gnus posting, Mail and news
5389 @section How do I make Gnus start up faster?
5390 @cindex Faster, starting Gnus
5391 @cindex Starting Gnus faster
5392 @cindex Gnus, starting faster
5393
5394 From the Gnus FAQ (@pxref{Learning more about Gnus}):
5395
5396 @quotation
5397 @email{pktiwari@@eos.ncsu.edu, Pranav Kumar Tiwari} writes: I posted
5398 the same query recently and I got an answer to it. I am going to
5399 repeat the answer. What you need is a newer version of gnus, version
5400 5.0.4+. I am using 5.0.12 and it works fine with me with the
5401 following settings:
5402
5403 @lisp
5404 (setq gnus-check-new-newsgroups nil
5405 gnus-read-active-file 'some
5406 gnus-nov-is-evil nil
5407 gnus-select-method '(nntp gnus-nntp-server))
5408 @end lisp
5409 @end quotation
5410
5411 @node Catching up in all newsgroups, Killing based on nonstandard headers, Starting Gnus faster, Mail and news
5412 @section How do I catch up all newsgroups in Gnus?
5413 @cindex Catching up all newsgroups in Gnus
5414 @cindex Gnus, Catching up all newsgroups in
5415
5416 In the @file{*Newsgroup*} buffer, type @kbd{M-< C-x ( c y C-x ) M-0 C-x e}
5417
5418 Leave off the initial @kbd{M-<} if you only want to catch up from point
5419 to the end of the @file{*Newsgroup*} buffer.
5420
5421 @node Killing based on nonstandard headers, Removing flashing messages, Catching up in all newsgroups, Mail and news
5422 @section Why can't I kill in Gnus based on the Newsgroups/Keywords/Control headers?
5423 @cindex Killing articles based on nonstandard headers
5424 @cindex Newsgroups header, killing articles based on
5425 @cindex Keywords header, killing articles based on
5426 @cindex Control header, killing articles based on
5427
5428 Gnus will complain that the @samp{Newsgroups}, @samp{Keywords}, and
5429 @samp{Control} headers are ``Unknown header'' fields.
5430
5431 For the @samp{Newsgroups} header, there is an easy workaround: kill on the
5432 @samp{Xref} header instead, which will be present on any cross-posted article
5433 (as long as your site carries the cross-post group).
5434
5435 If you really want to kill on one of these headers, you can do it like
5436 this:
5437
5438 @lisp
5439 (gnus-kill nil "^Newsgroups: .*\\(bad\\.group\\|worse\\.group\\)")
5440 @end lisp
5441
5442 @node Removing flashing messages, Catch-up is slow in Gnus, Killing based on nonstandard headers, Mail and news
5443 @section How do I get rid of flashing messages in Gnus for slow connections?
5444 @cindex Flashing Gnus messages, removing
5445 @cindex Removing flashing Gnus messages
5446 @cindex Slow connections causing flashing messages in Gnus
5447 @cindex Gnus, flashing messages in
5448
5449 Set @code{nntp-debug-read} to @code{nil}.
5450
5451 @node Catch-up is slow in Gnus, Gnus hangs for a long time, Removing flashing messages, Mail and news
5452 @section Why is catch up slow in Gnus?
5453 @cindex Slow catch up in Gnus
5454 @cindex Gnus is slow when catching up
5455 @cindex Crosspostings make Gnus catching up slow
5456
5457 Because Gnus is marking crosspostings read. You can control this with
5458 the variable @code{gnus-use-cross-reference}.
5459
5460 @node Gnus hangs for a long time, Learning more about Gnus, Catch-up is slow in Gnus, Mail and news
5461 @section Why does Gnus hang for a long time when posting?
5462 @cindex Hangs in Gnus
5463 @cindex Gnus hangs while posting
5464 @cindex Posting, Gnus hangs wile
5465
5466 @email{tale@@uunet.uu.net, David Lawrence} explains:
5467
5468 @quotation
5469 The problem is almost always interaction between NNTP and C News. NNTP
5470 POST asks C News's @code{inews} to not background itself but rather hang
5471 around and give its exit status so it knows whether the post was successful.
5472 (That wait will on some systems not return the exit status of the
5473 waited for job is a different sort of problem.) It ends up taking a
5474 long time because @code{inews} is calling @code{relaynews}, which often
5475 waits for another @code{relaynews} to free the lock on the news system
5476 so it can file the article.
5477
5478 My preferred solution is to change @code{inews} to not call
5479 @code{relaynews}, but rather use @code{newsspool}. This loses some
5480 error-catching functionality, but is for the most part safe as
5481 @code{inews} will detect a lot of the errors on its own. The C News
5482 folks have sped up @code{inews}, too, so speed should look better to
5483 most folks as that update propagates around.
5484 @end quotation
5485
5486 @node Learning more about Gnus, , Gnus hangs for a long time, Mail and news
5487 @section Where can I find out more about Gnus?
5488 @cindex FAQ for Gnus
5489 @cindex Gnus FAQ
5490 @cindex Learning more about Gnus
5491
5492 For more information on Gnus, consult the Gnus manual and FAQ, which are
5493 part of the Gnus distribution.
5494
5495 @node Concept index, , Mail and news, Top
5496 @unnumbered Concept Index
5497 @printindex cp
5498
5499 @bye
5500
5501 @ignore
5502 arch-tag: fee0d62d-06cf-43d8-ac21-123408eaf10f
5503 @end ignore