(make-backup-file-name-1): Replace slashes with `!'
rather than `|' (which is not allowed on Windows). Replace the
drive letters with a string "drive_X".
\input texinfo @c -*-texinfo-*- -*- coding: latin-1 -*-@c %**start of header@setfilename ../info/efaq@settitle GNU Emacs FAQ@c %**end of header@setchapternewpage odd@c The @ifinfo stuff only appears in the Info version@ifinfo@dircategory Editors@direntry* Emacs FAQ: (efaq). Frequently Asked Questions about Emacs.@end direntryCopyright 1994,1995,1996,1997,1998,1999 Reuven M. Lerner@*Copyright 1992,1993 Steven Byrnes@*Copyright 1990,1991,1992 Joseph Brian Wells@*This list of frequently asked questions about GNU Emacs with answers("FAQ") may be translated into other languages, transformed into otherformats (e.g. Texinfo, Info, WWW, WAIS), and updated with new information.The same conditions apply to any derivative of the FAQ as apply to the FAQitself. Every copy of the FAQ must include this notice or an approvedtranslation, information on who is currently maintaining the FAQ and how tocontact them (including their e-mail address), and information on where thelatest version of the FAQ is archived (including FTP information).The FAQ may be copied and redistributed under these conditions, except thatthe FAQ may not be embedded in a larger literary work unless that workitself allows free copying and redistribution.[This version has been somewhat edited from the last-posted version(as of August 1999) for inclusion in the Emacs distribution.]@end ifinfo@c The @titlepage stuff only appears in the printed version@titlepage@sp 10@center @titlefont{GNU Emacs FAQ}@c The following two commands start the copyright page.@page@vskip 0pt plus 1filllCopyright @copyright{} 1994,1995,1996,1997,1998,1999 Reuven M. Lerner@*Copyright @copyright{} 1992,1993 Steven Byrnes@*Copyright @copyright{} 1990,1991,1992 Joseph Brian Wells@*This list of frequently asked questions about GNU Emacs with answers("FAQ") may be translated into other languages, transformed into otherformats (e.g. Texinfo, Info, WWW, WAIS), and updated with new information.The same conditions apply to any derivative of the FAQ as apply to the FAQitself. Every copy of the FAQ must include this notice or an approvedtranslation, information on who is currently maintaining the FAQ and how tocontact them (including their e-mail address), and information on where thelatest version of the FAQ is archived (including FTP information).The FAQ may be copied and redistributed under these conditions, except thatthe FAQ may not be embedded in a larger literary work unless that workitself allows free copying and redistribution.[This version has been somewhat edited from the last-posted version(as of August 1999) for inclusion in the Emacs distribution.]@end titlepage@node Top, FAQ notation, (dir), (dir)This is the GNU Emacs FAQ, last updated on @today{}.The FAQ is slowly but surely being turned into a Texinfo document,allowing us to create HTML, Info, and TeX documents from a single sourcefile. Please bear with us as we improve on this format. If you haveany suggestions or questions, please contact@email{emacs-faq@@lerner.co.il, the FAQ maintainers}.@menu* FAQ notation:: * General questions:: * Getting help:: * Status of Emacs:: * Common requests:: * Bugs and problems:: * Compiling and installing Emacs:: * Finding Emacs and related packages:: * Major packages and programs:: * Key bindings:: * Alternate character sets:: * Mail and news:: * Concept index:: @end menu@c ------------------------------------------------------------@node FAQ notation, General questions, Top, Top@chapter FAQ notation@cindex FAQ notationThis section describes notation used in the GNU Emacs FAQ, as well as inthe Emacs documentation. Consult this section if this is the first timeyou are reading the FAQ, or if you are confused by notation or termsused in the FAQ.@menu* Basic keys:: * Extended commands:: * On-line manual:: * Filename conventions:: * Common acronyms:: @end menu@node Basic keys, Extended commands, FAQ notation, FAQ notation@section What do these mean: @kbd{C-h}, @kbd{M-C-a}, @key{RET}, @kbd{@key{ESC} a}, etc.?@cindex Basic keys@cindex Control key, notation for@cindex @key{Meta} key, notation for@cindex Control-meta characters, notation for@cindex @kbd{C-h}, definition of@cindex @kbd{M-C-h}, definition of@cindex @key{DEL}, definition of@cindex @key{ESC}, definition of@cindex @key{LFD}, definition of@cindex @key{RET}, definition of@cindex @key{SPC}, definition of@cindex @key{TAB}, definition of@itemize @bullet@item@kbd{C-x}: press the @key{x} key while holding down the @key{Control} key@item@kbd{M-x}: press the @key{x} key while holding down the @key{Meta} key(if your computer doesn't have a @key{Meta} key, see @pxref{No Meta key})@item@kbd{M-C-x}: press the @key{x} key while holding down both @key{Control}and @key{Meta}@item@kbd{C-M-x}: a synonym for the above@item@key{LFD}: Linefeed or Newline; same as @kbd{C-j}@item@key{RET}: @key{Return}, sometimes marked @key{Enter}; same as @kbd{C-m}@item@key{DEL}: @key{Delete}, usually not the same as @key{Backspace}; same as @kbd{C-?} (@pxref{Backspace invokes help} if deleting invokes Emacs help)@item@key{ESC}: Escape; same as @kbd{C-[}@item@key{TAB}: Tab; same as @kbd{C-i}@item@key{SPC}: Space bar@end itemizeKey sequences longer than one key (and some single-key sequences) areinside double quotes or on lines by themselves. Any real spaces in sucha key sequence should be ignored; only @key{SPC} really means press thespace key.The ASCII code sent by @kbd{C-x} (except for @kbd{C-?}) is the valuethat would be sent by pressing just @key{x} minus 96 (or 64 foruppercase @key{X}) and will be from 0 to 31. The ASCII code sent by@kbd{M-x} is the sum of 128 and the ASCII code that would be sent bypressing just @key{x}. Essentially, @key{Control} turns off bits 5 and6 and @key{Meta} turns on bit 7.@kbd{C-?} (aka @key{DEL}) is ASCII code 127. It is a misnomer to call@kbd{C-?} a "control" key, since 127 has both bits 5 and 6 turned ON.Also, on very few keyboards does @kbd{C-?} generate ASCII code 127.@inforef{Characters, Characters, emacs} and @inforef{Keys, Keys, emacs}for more information. (@pxref{On-line manual} for more information aboutInfo.)@node Extended commands, On-line manual, Basic keys, FAQ notation@section What does @file{M-x @var{command}} mean?@cindex Extended commands@cindex Commands, extended@cindex M-x, meaning of@kbd{M-x @var{command}} means type @kbd{M-x}, then type the name of thecommand, then type @key{RET}. (@pxref{Basic keys} if you're not surewhat @kbd{M-x} and @key{RET} mean.)@kbd{M-x} (by default) invokes the command@code{execute-extended-command}. This command allows you to run anyEmacs command if you can remember the command's name. If you can'tremember the command's name, you can type @key{TAB} and @key{SPC} forcompletion, @key{?} for a list of possibilities, and @kbd{M-p} and@kbd{M-n} to see previous commands entered. An Emacs "command" is any"interactive" Emacs function.Your system administrator may have bound other key sequences to invoke@code{execute-extended-command}. A function key labeled @kbd{Do} is agood candidate for this.To run non-interactive Emacs functions, @pxref{Evaluating Emacs Lisp code}.@node On-line manual, Filename conventions, Extended commands, FAQ notation@section How do I read topic XXX in the on-line manual?@cindex On-line manual, reading topics in@cindex Reading topics in the on-line manual@cindex Finding topics in the on-line manual@cindex Info, finding topics inWhen we refer you to topic XXX in the on-line manual, you can read thismanual node inside Emacs (assuming nothing is broken) by typing @kbd{C-hi m emacs @key{RET} m XXX @key{RET}}.This invokes Info, the GNU hypertext documentation browser. If you don'talready know how to use Info, type @key{?} from within Info.If we refer to topic XXX:YYY, type @kbd{C-h i m emacs @key{RET} m XXX@key{RET} m YYY @key{RET}}.Your system administrator may not have installed the Info files, or mayhave installed them improperly. In this case you should complain.@xref{Getting a printed manual}, if you would like a paper copy of theEmacs manual.@node Filename conventions, Common acronyms, On-line manual, FAQ notation@section What are @file{etc/SERVICE}, @file{src/config.h}, and @file{lisp/default.el}?@cindex Filename conventions@cindex Conventions for filenames@cindex Directories and files that come with EmacsThese are files that come with Emacs. The Emacs distribution is dividedinto subdirectories; the important ones are @file{etc}, @file{lisp}, and@file{src}.If you use Emacs, but don't know where it is kept on your system, startEmacs, then type @kbd{C-h v data-directory @key{RET}}. The directoryname displayed by this will be the full pathname of the installed@file{etc} directory.The location of your Info directory (i.e., where on-line documentationis stored) is kept in the variable @code{Info-default-directory-list}. Use@kbd{C-h v Info-default-directory-list @key{RET}} to see the contents ofthis variable, which will be a list of directory names. The lastdirectory in that list is probably where most Info files are stored. Bydefault, Info documentation is placed in @file{/usr/local/info}.Some of these files are available individually via FTP or e-mail;@pxref{Informational files for Emacs}. All are available in the sourcedistribution. Many of the files in the @file{etc} directory are alsoavailable via the Emacs "help" menu, or by typing @kbd{C-h ?} (@kbd{M-xhelp-for-help}).Your system administrator may have removed the @file{src} directory andmany files from the @file{etc} directory.@node Common acronyms, , Filename conventions, FAQ notation@section What are FSF, LPF, OSF, GNU, RMS, FTP, and GPL?@cindex FSF, definition of@cindex LPF, definition of@cindex OSF, definition of@cindex GNU, definition of@cindex RMS, definition of@cindex Stallman, Richard, acronym for@cindex Richard Stallman, acronym for@cindex FTP, definition of@cindex GPL, definition of@cindex Acronyms, definitions for@cindex Common acronyms, definitions for@table @asis@item FSFFree Software Foundation@item LPFLeague for Programming Freedom@item OSFOpen Software Foundation@item GNUGNU's Not Unix@item RMSRichard Matthew Stallman@item FTPFile Transfer Protocol@item GPLGNU General Public License@end tableAvoid confusing the FSF, the LPF, and the OSF. The LPF opposeslook-and-feel copyrights and software patents. The FSF aims to makehigh quality free software available for everyone. The OSF is aconsortium of computer vendors which develops commercial software forUnix systems.The word "free" in the title of the Free Software Foundation refers to"freedom," not "zero dollars." Anyone can charge any price forGPL-covered software that they want to. However, in practice, thefreedom enforced by the GPL leads to low prices, because you can alwaysget the software for less money from someone else, because everyone hasthe right to resell or give away GPL-covered software.@c ------------------------------------------------------------@node General questions, Getting help, FAQ notation, Top@chapter General questions@cindex General questionsThis section contains general questions having to do with Emacs, theFree Software Foundation, and related organizations.@menu* The LPF:: * Real meaning of copyleft:: * Guidelines for newsgroup postings:: * Newsgroup archives:: * Reporting bugs:: * Unsubscribing from Emacs lists:: * Contacting the FSF:: @end menu@node The LPF, Real meaning of copyleft, General questions, General questions@section What is the LPF?@cindex LPF, description of@cindex League for Programming Freedom@cindex Software patents, opposition to@cindex Patents for software, opposition toThe LPF opposes the expanding danger of software patents andlook-and-feel copyrights. To get more information, feel free to contactthe LPF via e-mail or otherwise. You may also contact@email{jbw@@cs.bu.edu, Joe Wells}; he will be happy to talk with youabout the LPF.You can find more information about the LPF in the file @file{etc/LPF}.More papers describing the LPF's views are available on the Internet andalso from @uref{http://lpf.ai.mit.edu/, the LPF}.@node Real meaning of copyleft, Guidelines for newsgroup postings, The LPF, General questions@section What is the real legal meaning of the GNU copyleft?@cindex Copyleft, real meaning of@cindex GPL, real meaning of@cindex General Public License, real meaning of@cindex Discussion of the GPLThe real legal meaning of the GNU General Public License (copyleft) willonly be known if and when a judge rules on its validity and scope.There has never been a copyright infringement case involving the GPL toset any precedents. Please take any discussion regarding this issue tothe newsgroup @uref{news:gnu.misc.discuss}, which was created to hold theextensive flame wars on the subject.RMS writes:@quotationThe legal meaning of the GNU copyleft is less important than the spirit,which is that Emacs is a free software project and that work pertainingto Emacs should also be free software. "Free" means that all users havethe freedom to study, share, change and improve Emacs. To make sureeveryone has this freedom, pass along source code when you distributeany version of Emacs or a related program, and give the recipients thesame freedom that you enjoyed.@end quotation@node Guidelines for newsgroup postings, Newsgroup archives, Real meaning of copyleft, General questions@section What are appropriate messages for @uref{news:gnu.emacs.help}, @uref{news:gnu.emacs.bug}, @uref{news:comp.emacs}, etc.?@cindex Newsgroups, appropriate messages for@cindex GNU newsgroups, appropriate messages for@cindex Usenet groups, appropriate messages for@cindex Mailing lists, appropriate messages forThe file @file{etc/MAILINGLISTS} discusses the purpose of each GNUmailing-list. (@pxref{Informational files for Emacs} if you want a copyof the file.) For those lists which are gatewayed with newsgroups, itlists both the newsgroup name and the mailing list address.@uref{news:comp.emacs} is for discussion of Emacs programs in general.This includes Emacs along with various other implementations, such asJOVE, MicroEmacs, Freemacs, MG, Unipress, CCA, and Epsilon.Many people post Emacs questions to @uref{news:comp.emacs} because theydon't receive any of the gnu.* newsgroups. Arguments have been madeboth for and against posting GNU-Emacs-specific material to@uref{news:comp.emacs}. You have to decide for yourself.Messages advocating "non-free" software are considered unacceptable onany of the gnu.* newsgroups except for @uref{news:gnu.misc.discuss},which was created to hold the extensive flame-wars on the subject."Non-free" software includes any software for which the end user can'tfreely modify the source code and exchange enhancements. Be careful toremove the gnu.* groups from the "Newsgroups:" line when posting afollowup that recommends such software.@uref{news:gnu.emacs.bug} is a place where bug reports appear, but avoidposting bug reports to this newsgroup (@pxref{Reporting bugs}).@node Newsgroup archives, Reporting bugs, Guidelines for newsgroup postings, General questions@section Where can I get old postings to @uref{news:gnu.emacs.help} and other GNU groups?@cindex Archived postings from @uref{news:gnu.emacs.help}@cindex Usenet archives for GNU groups@cindex Old Usenet postings for GNU groupsThe FSF has maintained archives of all of the GNU mailing lists for manyyears, although there may be some unintentional gaps in coverage. Thearchive is not particularly well organized or easy to retrieveindividual postings from, but pretty much everything is there.The archive is at @uref{ftp://ftp-mailing-list-archives.gnu.org}.As of this writing, the archives are not yet working.Web-based Usenet search services, such as@uref{http://www.dejanews.com, DejaNews}, also archive thegnu.* groups.@node Reporting bugs, Unsubscribing from Emacs lists, Newsgroup archives, General questions@section Where should I report bugs and other problems with Emacs?@cindex Bug reporting@cindex Good bug reports@cindex How to submit a bug report@cindex Reporting bugsThe correct way to report Emacs bugs is by e-mail to@email{bug-gnu-emacs@@gnu.org}. Anything sent here also appears in thenewsgroup @uref{news:gnu.emacs.bug}, but please use e-mail instead ofnews to submit the bug report. This ensures a reliable return addressso you can be contacted for further details.Be sure to read the "Bugs" section of the Emacs manual before reportinga bug to bug-gnu-emacs! The manual describes in detail how to submit auseful bug report. (@pxref{On-line manual} if you don't know how to read themanual.)RMS says:@quotationSending bug reports to @email{help-gnu-emacs@@gnu.org} (which has theeffect of posting on @uref{news:gnu.emacs.help}) is undesirable becauseit takes the time of an unnecessarily large group of people, most ofwhom are just users and have no idea how to fix these problem.@email{bug-gnu-emacs@@gnu.org} reaches a much smaller group of peoplewho are more likely to know what to do and have expressed a wish toreceive more messages about Emacs than the others.@end quotationRMS says it is sometimes fine to post to @uref{news:gnu.emacs.help}:@quotationIf you have reported a bug and you don't hear about a possible fix,then after a suitable delay (such as a week) it is okay to post ongnu.emacs.help asking if anyone can help you.@end quotationIf you are unsure whether you have found a bug, consider the followingnon-exhaustive list, courtesy of RMS:@quotationIf Emacs crashes, that is a bug. If Emacs gets compilation errorswhile building, that is a bug. If Emacs crashes while building, thatis a bug. If Lisp code does not do what the documentation says itdoes, that is a bug.@end quotation@node Unsubscribing from Emacs lists, Contacting the FSF, Reporting bugs, General questions@section How do I unsubscribe from this mailing list?@cindex Unsubscribing from GNU mailing lists@cindex Removing yourself from GNU mailing listsIf you are receiving a GNU mailing list named "XXX", you might be ableto unsubscribe from it by sending a request to the address@email{XXX-request@@gnu.org}. However, this will not work if you arenot listed on the main mailing list, but instead receive the mail from adistribution point. In that case, you will have to track down at whichdistribution point you are listed. Inspecting the @samp{Received} headerson the mail messages may help, along with liberal use of the "EXPN" or"VRFY" sendmail commands through "telnet <site-address> smtp". Ask yourpostmaster for help.@node Contacting the FSF, , Unsubscribing from Emacs lists, General questions@section What is the current address of the FSF?@cindex Snail mail address of the FSF@cindex Postal address of the FSF@cindex Contracting the FSF@cindex Free Software Foundation, contacting@table @asis@item E-mailgnu@@gnu.org@item Telephone+1-617-542-5942@item Fax+1-617-542-2652@item World Wide Web@uref{http://www.gnu.org/}@item Postal addressFree Software Foundation@*59 Temple Place - Suite 330@*Boston, MA 02111-1307@*USA@*@end tableFor details on how to order items directly from the FSF, see the file@file{etc/ORDERS}.@c ------------------------------------------------------------@node Getting help, Status of Emacs, General questions, Top@chapter Getting help@cindex Getting helpThis section tells you how to get help with Emacs@menu* Basic editing:: * Learning how to do something:: * Getting a printed manual:: * Emacs Lisp documentation:: * Installing Texinfo documentation:: * Printing a Texinfo file:: * Viewing Info files outside of Emacs:: * Informational files for Emacs:: * Help installing Emacs:: * Obtaining the FAQ:: @end menu@node Basic editing, Learning how to do something, Getting help, Getting help@section I'm just starting Emacs; how do I do basic editing?@cindex Basic editing with Emacs@cindex Beginning editing@cindex Tutorial, invoking the@cindex Self-paced tutorial, invoking the@cindex Help system, entering theType @kbd{C-h t} to invoke the self-paced tutorial. Just typing @kbd{C-h}enters the help system.Your system administrator may have changed @kbd{C-h} to act like@key{DEL} to deal with local keyboards. You can use @kbd{M-xhelp-for-help} instead to invoke help. To discover what key (if any)invokes help on your system, type @kbd{M-x where-is @key{RET}help-for-help @key{RET}}. This will print a comma-separated list of keysequences in the echo area. Ignore the last character in each keysequence listed. Each of the resulting key sequences invokes help.Emacs help works best if it is invoked by a single key whose valueshould be stored in the variable @code{help-char}.There is also a WWW-based tutorial for Emacs 18, much of which is alsorelevant for Emacs 20, available at@uref{http://kufacts.cc.ukans.edu/cwis/writeups/misc/emacsguide.html}@node Learning how to do something, Getting a printed manual, Basic editing, Getting help@section How do I find out how to do something in Emacs?@cindex Help for Emacs@cindex Learning to do something in Emacs@cindex Reference card for Emacs@cindex Overview of help systemsThere are several methods for finding out how to do things in Emacs.@itemize @bullet@itemThe complete text of the Emacs manual is available on-line via the Infohypertext reader. Type @kbd{C-h i} to invoke Info. Typing @key{h}immediately after entering Info will provide a short tutorial on how touse it.@itemYou can order a hardcopy of the manual from the FSF. @xref{Getting aprinted manual}.@itemYou can get a printed reference card listing commands and keys toinvoke them. You can order one from the FSF for $1 (or 10 for $5),or you can print your own from the @file{etc/refcard.tex} or@file{etc/refcard.ps} files in the Emacs distribution.@itemYou can list all of the commands whose names contain a certain word(actually which match a regular expression) using @kbd{C-h a} (@kbd{M-xcommand-apropos}).@itemYou can list all of the functions and variables whose names contain acertain word using @kbd{M-x apropos}.@itemThere are many other commands in Emacs for getting help andinformation. To get a list of these commands, type @samp{?} after@kbd{C-h}.@end itemize@node Getting a printed manual, Emacs Lisp documentation, Learning how to do something, Getting help@section How do I get a printed copy of the Emacs manual?@cindex Printed Emacs manual, obtaining@cindex Manual, obtaining a printed copy of@cindex Emacs manual, obtaining a printed copy ofYou can order a printed copy of the Emacs manual from the FSF. Fordetails see the file @file{etc/ORDERS}.The full @TeX{} source for the manual also comes in the @file{man}directory of the Emacs distribution, if you're daring enough to try toprint out this 440-page manual yourself (@pxref{Printing a Texinfofile}).If you absolutely have to print your own copy, and you don't have @TeX{},you can get a PostScript version from@uref{http://www.gnu.org/manual/emacs/ps/emacs.ps.gz}A WWW version of the manual is at@uref{www.gnu.org/manual/emacs/index.html}@xref{Learning how to do something}, for how to view the manual on-line.@node Emacs Lisp documentation, Installing Texinfo documentation, Getting a printed manual, Getting help@section Where can I get documentation on Emacs Lisp?@cindex Documentation on Emacs Lisp@cindex Function documentation@cindex Variable documentation@cindex Emacs Lisp Reference Manual@cindex Reference manual for Emacs LispWithin Emacs, you can type @kbd{C-h f} to get the documentation for afunction, @kbd{C-h v} for a variable.For more information, obtain the Emacs Lisp Reference Manual. Details onordering it from FSF are in file @file{etc/ORDERS}.The Emacs Lisp Reference Manual is also available on-line, in Infoformat. Texinfo source for the manual (along with pregenerated Infofiles) is available at@uref{ftp://ftp.gnu.org/pub/gnu/emacs/elisp-manual-20-2.5.tar.gz}and all mirrors of @samp{ftp.gnu.org} (@pxref{Current GNU distributions} for alist). @xref{Installing Texinfo documentation}, if you want to installthe Info files, or @ref{Printing a Texinfo file} if you want to use theTexinfo source to print the manual yourself.A WWW version of the Emacs Lisp Reference Manual is available at@uref{http://www.gnu.org/manual/elisp-manual-20-2.5/elisp.html}@node Installing Texinfo documentation, Printing a Texinfo file, Emacs Lisp documentation, Getting help@section How do I install a piece of Texinfo documentation?@cindex Texinfo documentation, installing@cindex Installing Texinfo documentation@cindex New Texinfo files, installing@cindex Documentation, installing new Texinfo filesFirst, you must turn the Texinfo files into Info files. You may do thisusing the stand-alone @file{makeinfo} program, available as part of the latestTexinfo package at@uref{ftp://ftp.gnu.org/pub/gnu/texinfo/texinfo-3.12.tar.gz}and all mirrors of @samp{ftp.gnu.org} (@pxref{Current GNU distributions} for a list).For information about the Texinfo format, read the Texinfo manual whichcomes with Emacs. This manual also comes installed in Info format, soyou can read it on-line.Neither @code{texinfo-format-buffer} nor @file{makeinfo} installs theresulting Info files in Emacs's Info tree. To install Info files:@enumerate@item Move the files to the @file{info} directory in the installed Emacs distribution. @xref{Filename conventions}, if you don't know where that is.@item Edit the file @file{info/dir} in the installed Emacs distribution, and add a line for the top level node in the Info package that you are installing. Follow the examples already in this file. The format is:@example* Topic: (relative-pathname). Short description of topic.@end example@end enumerate If you want to install Info files and you don't have the necessaryprivileges, you have several options:@itemize @bullet@itemInfo files don't actually need to be installed before being used. Youcan feed a file name to the @code{Info-goto-node} command (invoked bypressing @key{g} in Info mode) by typing the name of the file inparentheses. This goes to the node named "Top" in that file. Forexample, to view a Info file named "XXX" in your home directory, you cantype this:@lispC-h i g (~/XXX) @key{RET}@end lisp@itemYou can create your own Info directory. You can tell Emacs where theInfo directory is by adding its pathname to the value of the variable@code{Info-default-directory-list}. For example, to use a private Infodirectory which is a subdirectory of your home directory named "Info",you could put this in your @file{.emacs} file:@lisp(setq Info-default-directory-list (cons "~/Info" Info-default-directory-list))@end lispYou will need a top-level Info file named @file{dir} in this directorywhich has everything the system dir file has in it, except it shouldlist only entries for Info files in that directory. You might not needit if all files in this directory were referenced by other @file{dir}files. The node lists from all @file{dir} files in@code{Info-default-directory-list} are merged by the Info system.@end itemize@node Printing a Texinfo file, Viewing Info files outside of Emacs, Installing Texinfo documentation, Getting help@section How do I print a Texinfo file?@cindex Printing a Texinfo file@cindex Texinfo file, printingYou can't get nicely printed output from Info files; you must still havethe original Texinfo source file for the manual you want to print.Assuming you have @TeX{} installed on your system, follow these steps:@enumerate@item Make sure the first line of the Texinfo file looks like this:@example\input texinfo@end example You may need to change @samp{texinfo} to the full pathname of the texinfo.tex file, which comes with Emacs as @samp{man/texinfo.tex} (or copy or link it into the current directory).@item @code{tex XXX.texinfo}@item @code{texindex XXX.??} The @samp{texindex} program comes with Emacs as @file{man/texindex.c}.@item @code{tex XXX.texinfo}@item Print the DVI file @file{XXX.dvi} in the normal way for printing DVI files at your site.@end enumerateTo get more general instructions, retrieve the latest Texinfo package(@pxref{Installing Texinfo documentation}).@node Viewing Info files outside of Emacs, Informational files for Emacs, Printing a Texinfo file, Getting help@section Can I view Info files without using Emacs?@cindex Viewing Info files@cindex Info file viewers@cindex Alternative Info file viewersYes. Here are some alternative programs:@itemize @bullet@item Info, a stand-alone version of the Info program, comes as part of theTexinfo package. @xref{Installing Texinfo documentation}, for details.@item Xinfo, a stand-alone version of the Info program that runs under XWindows. You can get it at@uref{ftp://ftp.gnu.org/pub/gnu/xinfo/xinfo-1.01.01.tar.gz} and allmirrors of @samp{ftp.gnu.org} (@pxref{Current GNU distributions} for a list).@item Tkinfo, an Info viewer that runs under X Windows and uses Tcl/Tk. Youcan get Tkinfo at @uref{http://math-www.uni-paderborn.de/~axel/tkinfo/}.@end itemize@node Informational files for Emacs, Help installing Emacs, Viewing Info files outside of Emacs, Getting help@section What informational files are available for Emacs?@cindex Informational files included with Emacs@cindex Files included with Emacs@cindex @file{COPYING}, description of file@cindex @file{DISTRIB}, description of file@cindex @file{FAQ}, description of file@cindex @file{FTP}, description of file@cindex @file{GNU}, description of file@cindex @file{INTERVIEW}, description of file@cindex @file{LPF}, description of file@cindex @file{MACHINES}, description of file@cindex @file{MAILINGLISTS}, description of file@cindex @file{NEWS}, description of file@cindex @file{SERVICE}, description of file@cindex @file{SUN-SUPPORT}, description of fileThis isn't a frequently asked question, but it should be! A variety ofinformational files about Emacs and relevant aspects of the GNU projectare available for you to read.The following files are available in the @file{etc} directory of theEmacs distribution (@pxref{Filename conventions} if you're not sure where that is).@table @file@item COPYINGEmacs General Public License@item DISTRIBEmacs Availability Information, including the popular "Free SoftwareFoundation Order Form"@item FAQEmacs Frequently Asked Questions (You're reading it)@item FTPHow to get GNU Software by Internet FTP or by UUCP@item GNUThe GNU Manifesto@item INTERVIEWRichard Stallman discusses his public-domain UNIX-compatible softwaresystem with BYTE editors@item LPFWhy you should join the League for Programming Freedom@item MACHINESStatus of Emacs on Various Machines and Systems@item MAILINGLISTSGNU Project Electronic Mailing Lists@item NEWSEmacs news, a history of user-visible changes@item SERVICEGNU Service Directory@item SUN-SUPPORTincluding "Using Emacstool with GNU Emacs"@end tableLatest versions of the above files also available at@uref{ftp://ftp.gnu.org/pub/gnu/GNUinfo/}More GNU information, including back issues of the "GNU's Bulletin", areat@uref{http://www.gnu.org/bulletins/bulletins.html} and@uref{http://www.cs.pdx.edu/~trent/gnu/gnu.html}@node Help installing Emacs, Obtaining the FAQ, Informational files for Emacs, Getting help@section Where can I get help in installing Emacs?@cindex Installation help@cindex Help installing Emacs@xref{Installing Emacs}, for some basic installation hints, and question83 if you have problems with the installation.The file @file{etc/SERVICE} (@pxref{Filename conventions} if you're notsure where that is) lists companies and individuals willing to sell youhelp in installing or using Emacs. An up-to-date version this file isavailable on @samp{ftp.gnu.org} (@pxref{Informational files for Emacs}).@node Obtaining the FAQ, , Help installing Emacs, Getting help@section Where can I get the latest version of this FAQ?@cindex FAQ, obtaining the@cindex Latest FAQ version, obtaining the@cindex Retrieving the latest FAQ version@cindex E-mail, retrieving the FAQ via@cindex Web, reading the FAQ on theThe Emacs FAQ is available in several ways:@itemize @bullet@itemInside of Emacs itself. You can get it from selecting the "Emacs FAQ"option from the "Help" menu at the top of any Emacs frame, or by typing@kbd{C-h F} (@kbd{M-x view-emacs-FAQ}).@itemVia USENET. If you can read news, the FAQ should be available in yournews spool, in both the @uref{news:gnu.emacs.help} and@uref{news:comp.emacs} newsgroups. Every news reader should allow youto read any news article that is still in the news spool, even if youhave read the article before. You may need to read the instructions foryour news reader to discover how to do this. In @file{rn}, this commandwill do this for you at the article selection level:@example?GNU Emacs Frequently Asked Questions?rc:m@end exampleIn Gnus, you should type @kbd{C-u C-x C-s} from the @file{*Summary*}buffer or @kbd{C-u @key{SPC}} from the @file{*Newsgroup*} buffer to viewall articles in a newsgroup.If the FAQ articles have expired and been deleted from your news spool,it might (or might not) do some good to complain to your newsadministrator, because the most recent FAQ should not expire for awhile.@item Via HTTP or FTP. You can always fetch the latest FAQ from@uref{http://www.lerner.co.il/emacs/} and@uref{ftp://ftp.lerner.co.il/pub/emacs/}@itemIn the Emacs distribution. Since Emacs 18.56, the FAQ at the timeof release has been part of the Emacs distribution as @file{etc/FAQ}(@pxref{Filename conventions}).@itemVia the World Wide Web. A hypertext version is available at@uref{http://www.lerner.co.il/emacs/}@itemVia anonymous ftp and e-mail from @file{rtfm.mit.edu} (and its mirror inEurope), the main repository for FAQs and other items posted tonews.answers. The Emacs FAQs are available at@uref{ftp://rtfm.mit.edu/pub/usenet/comp.emacs/} and@uref{ftp://ftp.uni-paderborn.de/pub/doc/FAQ/comp/emacs/}If you do not have access to anonymous FTP, you can access the archivesusing the @file{rtfm.mit.edu} mail server. The Emacs FAQ can beretrieved by sending mail to @email{mail-server@@rtfm.mit.edu} with ablank subject and containing@examplesend usenet/news.answers/GNU-Emacs-FAQ/diffssend usenet/news.answers/GNU-Emacs-FAQ/part1send usenet/news.answers/GNU-Emacs-FAQ/part2send usenet/news.answers/GNU-Emacs-FAQ/part3send usenet/news.answers/GNU-Emacs-FAQ/part4send usenet/news.answers/GNU-Emacs-FAQ/part5@end exampleFor more information, send email to @email{mail-server@@rtfm.mit.edu}with "help" and "index" in the body on separate lines.@itemAs the very last resort, you can e-mail a request to@email{emacs-faq@@lerner.co.il}. Don't do this unless you have made aserious effort to obtain the FAQ list via one of the methods listedabove.@end itemize@c ------------------------------------------------------------@node Status of Emacs, Common requests, Getting help, Top@chapter Status of Emacs@cindex Status of EmacsThis section gives you basic information about Emacs, including itslatest version status.@menu* Origin of the term Emacs:: * Latest version of Emacs:: * New in Emacs 20:: @end menu@node Origin of the term Emacs, Latest version of Emacs, Status of Emacs, Status of Emacs@section Where does the name "Emacs" come from?@cindex Origin of the term "Emacs"@cindex Emacs name origin@cindex TECO@cindex Original version of EmacsEmacs originally was an acronym for Editor MACroS. RMS says he "pickedthe name Emacs because @key{E} was not in use as an abbreviation on ITS atthe time." The first Emacs was a set of macros written in 1976 at MITby RMS for the editor TECO (Text Editor and COrrector, originally TapeEditor and COrrector) under ITS on a PDP-10. RMS had already extendedTECO with a "real-time" full screen mode with reprogrammable keys.Emacs was started by @email{gls@@east.sun.com, Guy Steele} as a projectto unify the many divergent TECO command sets and key bindings at MIT,and completed by RMS.Many people have said that TECO code looks a lot like line noise; youcan read more at @uref{news:alt.lang.teco}. Someone has written a TECOimplementation in Emacs Lisp (to find it, @ref{Packages that do not comewith Emacs}); it would be an interesting project to run the originalTECO Emacs inside of Emacs.For some not-so-serious alternative reasons for Emacs to have thatname, check out @file{etc/JOKES} (@pxref{Filename conventions}).@node Latest version of Emacs, New in Emacs 20, Origin of the term Emacs, Status of Emacs@section What is the latest version of Emacs?@cindex Version, latest@cindex Latest versionEmacs 20.5 is the current version as of this writing.@node New in Emacs 20, , Latest version of Emacs, Status of Emacs@section What is different about Emacs 20?@cindex Differences between Emacs 19 and Emacs 20@cindex Emacs 20, new features in@cindex Recently introduced featuresTo find out what has changed in recent versions, type @kbd{C-h n}(@kbd{M-x view-emacs-news}). The oldest changes are at the bottom ofthe file, so you might want to read it starting there, rather than atthe top.The differences between Emacs versions 18 and 19 was rather dramatic;the introduction of frames, faces, and colors on windowing systems wasobvious to even the most casual user.There are differences between Emacs versions 19 and 20 as well, but manyare more subtle or harder to find. Among the changes are the inclusionof MULE code for languages that use non-Latin characters, the "customize"facility for modifying variables without having to use Lisp, andautomatic conversion of files from Macintosh, Microsoft, and Unixplatforms.A number of older Lisp packages, such as Gnus, Supercite and thecalendar/diary, have been updated and enhanced to work with Emacs 20,and are now included with the standard distribution.@c ------------------------------------------------------------@node Common requests, Bugs and problems, Status of Emacs, Top@chapter Common requests@cindex Common requests@menu* Setting up a customization file:: * Debugging a customization file:: * Displaying the current line or column:: * Displaying the current filename in the titlebar:: * Turning on abbrevs by default:: * Turning on auto-fill by default:: * Associating modes with files:: * Working with unprintable characters:: * Highlighting a region:: * Controlling case sensitivity:: * Wrapping words automatically:: * Spell-checkers:: * Checking TeX and *roff documents:: * Changing load-path:: * Using an already running Emacs process:: * Compiler error messages:: * Indenting switch statements:: * Horizontal scrolling:: * Overwrite mode:: * Turning off beeping:: * Turning the volume down:: * Automatic indentation:: * Matching parentheses:: * Hiding #ifdef lines:: * Repeating commands:: * Valid X resources:: * Evaluating Emacs Lisp code:: * Changing the length of a Tab:: * Inserting > at the beginning of each line:: * Underlining paragraphs:: * Repeating a command as many times as possible:: * Forcing the cursor to remain in the same column:: * Forcing Emacs to iconify itself:: * Using regular expressions:: * Replacing text across multiple files:: * Documentation for etags:: * Disabling backups:: * Disabling auto-save-mode:: * Modifying pull-down menus:: * Deleting menus and menu options:: * Turning on syntax highlighting:: * Scrolling only one line:: * Replacing highlighted text:: * Editing MS-DOS files:: * Filling paragraphs with a single space:: @end menu@node Setting up a customization file, Debugging a customization file, Common requests, Common requests@section How do I set up a @file{.emacs} file properly?@cindex @file{.emacs} file, setting up@cindex Init file, setting up@cindex Customization file, setting up@inforef{Init File, Init File, emacs}In general, new Emacs users should not have @file{.emacs} files, becauseit causes confusing non-standard behavior. Then they send questions to@email{help-gnu-emacs@@gnu.org} asking why Emacs isn't behaving asdocumented.Emacs 20 includes the new @code{customize} facility, which can beinvoked using @kbd{M-x customize @key{RET}}. This allows users who areunfamiliar with Emacs Lisp to modify their @file{.emacs} files in arelatively straightforward way, using menus rather than Lisp code. Notall packages support Customize as of this writing, but the number isgrowing fairly steadily.While @code{customize} might indeed make it easier to configure Emacs,consider taking a bit of time to learn Emacs Lisp and modifying your@file{.emacs} directly. Simple configuration options are describedrather completely in @inforef{Init File, Init File, emacs}, for usersinterested in performing frequently requested, basic tasks.@node Debugging a customization file, Displaying the current line or column, Setting up a customization file, Common requests@section How do I debug a @file{.emacs} file?@cindex Debugging @file{.emacs} file@cindex @file{.emacs} debugging@cindex Init file debugging@cindex @samp{-debug-init}Start Emacs with the @samp{-debug-init} command-line option. Thisenables the Emacs Lisp debugger before evaluating your @file{.emacs}file, and places you in the debugger if something goes wrong. The topline in the @file{trace-back} buffer will be the error message, and thesecond or third line of that buffer will display the Lisp code from your@file{.emacs} file that caused the problem.You can also evaluate an individual function or argument to a functionin your @file{.emacs} file by moving the cursor to the end of thefunction or argument and typing @kbd{C-x C-e} (@kbd{M-xeval-last-sexp}).Use @kbd{C-h v} (@kbd{M-x describe-variable}) to check the value ofvariables which you are trying to set or use.@node Displaying the current line or column, Displaying the current filename in the titlebar, Debugging a customization file, Common requests@section How do I make Emacs display the current line (or column) number?@cindex @code{line-number-mode}@cindex Displaying the current line or column@cindex Line number, displaying the current@cindex Column, displaying the current@cindex @code{mode-line-format}To have Emacs automatically display the current line number of the pointin the mode line, do @kbd{M-x line-number-mode}. You can also put theform@lisp(setq line-number-mode t)@end lispin your @file{.emacs} file to achieve this whenever you start Emacs.Note that Emacs will not display the line number if the buffer is largerthan the value of the variable @code{line-number-display-limit}.As of Emacs 20, you can similarly display the current column with@kbd{M-x column-number-mode}, or by putting the form@lisp(setq column-number-mode t) @end lispin your @file{.emacs} file.The "%c" format specifier in the variable @code{mode-line-format} willinsert the current column's value into the mode line. See thedocumentation for @code{mode-line-format} (using @kbd{C-h vmode-line-format @key{RET}}) for more information on how to set and usethis variable.Users of all Emacs versions can display the current column using@email{abraham@@iesd.auc.dk, Per Abrahamsen's} "column" package.@xref{Packages that do not come with Emacs}, for instructions on how toget it.None of the vi emulation modes provide the "set number" capability of vi(as far as we know).@node Displaying the current filename in the titlebar, Turning on abbrevs by default, Displaying the current line or column, Common requests@section How can I modify the titlebar to contain the current filename?@cindex Titlebar, displaying the current filename in@cindex Filename, displaying in the titlebar@cindex @code{frame-title-format}The contains of an Emacs frame's titlebar is controlled by the variable@code{frame-title-format}, which has the same structure as the variable@code{mode-line-format}. (Use @kbd{C-h v} or @kbd{M-xdescribe-variable} to get information about one or both of thesevariables.)By default, the titlebar for a frame does contain the name of the buffercurrently being visited, except if there is a single frame. In such acase, the titlebar contains the name of the user and the machine atwhich Emacs was invoked. This is done by setting@code{frame-title-format} to the default value of@lisp(multiple-frames "%b" ("" invocation-name "@@" system-name))@end lispTo modify the behavior such that frame titlebars contain the buffer'sname regardless of the number of existing frames, include the followingin your @file{.emacs}:@lisp(setq frame-title-format "%b")@end lisp@node Turning on abbrevs by default, Turning on auto-fill by default, Displaying the current filename in the titlebar, Common requests@section How do I turn on abbrevs by default just in mode XXX?@cindex Abbrevs, turning on by defaultPut this in your @file{.emacs} file:@lisp(condition-case () (quietly-read-abbrev-file) (file-error nil))(add-hook 'XXX-mode-hook (lambda () (setq abbrev-mode t)))@end lisp@node Turning on auto-fill by default, Associating modes with files, Turning on abbrevs by default, Common requests@section How do I turn on @code{auto-fill-mode} by default?@cindex @code{auto-fill-mode}, activating automatically@cindex Filling automatically@cindex Automatic entry to @code{auto-fill-mode}To turn on @code{auto-fill-mode} just once for one buffer, use @kbd{M-xauto-fill-mode}.To turn it on for every buffer in a certain mode, you must use the hookfor that mode. For example, to turn on @code{auto-fill} mode for alltext buffers, including the following in your @file{.emacs} file:@lisp(add-hook 'text-mode-hook 'turn-on-auto-fill)@end lispIf you want @code{auto-fill} mode on in all major modes, do this:@lisp(setq-default auto-fill-function 'do-auto-fill)@end lisp@node Associating modes with files, Working with unprintable characters, Turning on auto-fill by default, Common requests@section How do I make Emacs use a certain major mode for certain files?@cindex Associating modes with files@cindex File extensions and modes@cindex @code{auto-mode-alist}, modifying@cindex Modes, associating with file extensionsIf you want to use XXX mode for all files which end with the extension@samp{.YYY}, this will do it for you:@lisp(setq auto-mode-alist (cons '("\\.YYY\\'" . XXX-mode) auto-mode-alist))@end lispOtherwise put this somewhere in the first line of any file you want toedit in XXX mode (in the second line, if the first line begins with@samp{#!}):@example-*-XXX-*-@end exampleBeginning with Emacs 19, the variable @code{interpreter-mode-alist}specifies which mode to use when loading a shell script. (Emacsdetermines which interpreter you're using by examining the first line ofthe file.) This feature only applies when the file name doesn'tindicate which mode to use. Use @kbd{C-h v} (or @kbd{M-xdescribe-variable}) on @code{interpreter-mode-alist} to learn more.@node Working with unprintable characters, Highlighting a region, Associating modes with files, Common requests@section How do I search for, delete, or replace unprintable (eight-bit or control) characters?@cindex Unprintable characters, working with@cindex Working with unprintable characters@cindex Control characters, working with@cindex Eight-bit characters, working with@cindex Searching for unprintable characters@cindex Regexps and unprintable charactersTo search for a single character that appears in the buffer as, forexample, @samp{\237}, you can type @kbd{C-s C-q 2 3 7}. (This assumesthe value of @code{search-quote-char} is 17 (i.e., @kbd{C-q}).)Searching for ALL unprintable characters is best done with a regularexpression ("regexp") search. The easiest regexp to use for theunprintable chars is the complement of the regexp for the printablechars.@itemize @bullet@itemRegexp for the printable chars: @samp{[\t\n\r\f -~]}@itemRegexp for the unprintable chars: @samp{[^\t\n\r\f -~]}@end itemizeTo type these special characters in an interactive argument to@code{isearch-forward-regexp} or @code{re-search-forward}, you need touse @kbd{C-q}. (@samp{\t}, @samp{\n}, @samp{\r}, and @samp{\f} standrespectively for @key{TAB}, @key{LFD}, @key{RET}, and @kbd{C-l}.) So,to search for unprintable characters using @code{re-search-forward}:@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}}Using @code{isearch-forward-regexp}:@kbd{M-C-s [^ @key{TAB} @key{RET} C-q @key{RET} C-q C-l @key{SPC} -~]}To delete all unprintable characters, simply use replace-regexp:@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}}Replacing is similar to the above. To replace all unprintablecharacters with a colon, use: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}@itemize @bullet@item You don't need to quote @key{TAB} with either isearch or typingsomething in the minibuffer.@end itemize@node Highlighting a region, Controlling case sensitivity, Working with unprintable characters, Common requests@section How can I highlight a region of text in Emacs?@cindex Highlighting text@cindex Text, highlighting@cindex @code{transient-mark-mode}@cindex Region, highlighting aIf you are using a windowing system such as X, you can cause the regionto be highlighted when the mark is active by including@lisp(transient-mark-mode t)@end lispin your @file{.emacs} file. (Also see @xref{Turning on syntax highlighting}.)@node Controlling case sensitivity, Wrapping words automatically, Highlighting a region, Common requests@section How do I control Emacs's case-sensitivity when searching/replacing?@cindex @code{case-fold-search}@cindex Case sensitivity of searches@cindex @code{case-replace}@cindex Searching without case sensitivity@cindex Ignoring case in searchesFor searching, the value of the variable @code{case-fold-search}determines whether they are case sensitive:@lisp(setq case-fold-search nil) ; make searches case sensitive(setq case-fold-search t) ; make searches case insensitive@end lispSimilarly, for replacing the variable @code{case-replace} determineswhether replacements preserve case.To change the case sensitivity just for one major mode, use the majormode's hook. For example:@lisp(add-hook 'XXX-mode-hook (lambda () (setq case-fold-search nil)))@end lisp@node Wrapping words automatically, Spell-checkers, Controlling case sensitivity, Common requests@section How do I make Emacs wrap words for me?@cindex Wrapping word automatically@cindex @code{auto-fill-mode}, introduction to@cindex Maximum line width, default value@cindex @code{fill-column}, default valueUse @code{auto-fill-mode}, activated by typing @kbd{M-x auto-fill-mode}.The default maximum line width is 70, determined by the variable@code{fill-column}. To learn how to turn this on automatically, @pxref{Turning on auto-fill by default}.@node Spell-checkers, Checking TeX and *roff documents, Wrapping words automatically, Common requests@section Where can I get a better spelling checker for Emacs?@cindex Checking spelling@cindex Spelling, checking text documentsUse Ispell. @xref{Ispell}.@node Checking TeX and *roff documents, Changing load-path, Spell-checkers, Common requests@section How can I spell-check @TeX{} or *roff documents?@cindex Spelling, checking @TeX{} documents@cindex @TeX{} documents, checking spelling inUse Ispell. Ispell can handle @TeX{} and *roff documents.@xref{Ispell}.@node Changing load-path, Using an already running Emacs process, Checking TeX and *roff documents, Common requests@section How do I change @code{load-path}?@cindex @code{load-path}, modifying@cindex Modifying @code{load-path}@cindex Adding to @code{load-path}In general, you should only add to the @code{load-path}. You can adddirectory @var{/XXX/YYY} to the load path like this:@lisp(setq load-path (cons "/XXX/YYY/" load-path))@end lispTo do this relative to your home directory:@lisp(setq load-path (cons "~/YYY/" load-path)@end lisp@node Using an already running Emacs process, Compiler error messages, Changing load-path, Common requests@section How do I use an already running Emacs from another window?@cindex @code{emacsclient}@cindex Emacs server functions@cindex Using an existing Emacs process@code{emacsclient}, which comes with Emacs, is for editing a file usingan already running Emacs rather than starting up a new Emacs. It doesthis by sending a request to the already running Emacs, which must beexpecting the request.@itemize @bullet@itemSetupEmacs must have executed the @code{server-start} function for@samp{emacsclient} to work. This can be done either by a command lineoption:@exampleemacs -f server-start@end exampleor by invoking @code{server-start} from @file{.emacs}:@lisp(if (some conditions are met) (server-start))@end lispWhen this is done, Emacs starts a subprocess running a program called@samp{server}. @samp{server} creates a Unix domain socket. The socketis either named @file{.emacs_server}, in the user's home directory,or @file{esrv-@var{USER-ID}-@var{SYSTEM-NAME}}, in the @file{/tmp}directory, depending on how @samp{emacsserver} was compiled.To get your news reader, mail reader, etc., to invoke@samp{emacsclient}, try setting the environment variable @code{EDITOR}(or sometimes @code{VISUAL}) to the value @samp{emacsclient}. You mayhave to specify the full pathname of the @samp{emacsclient} programinstead. Examples:@example# csh commands:setenv EDITOR emacsclient# using full pathnamesetenv EDITOR /usr/local/emacs/etc/emacsclient # sh command:EDITOR=emacsclient ; export EDITOR@end example@item Normal useWhen @samp{emacsclient} is run, it connects to the @file{.emacs_server}socket and passes its command line options to @samp{server}. When@samp{server} receives these requests, it sends this information on thethe Emacs process, which at the next opportunity will visit the filesspecified. (Line numbers can be specified just like with Emacs.) Theuser will have to switch to the Emacs window by hand. When the user isdone editing a file, the user can type @kbd{C-x #} (or @kbd{M-xserver-edit}) to indicate this. If there is another buffer requested byemacsclient, Emacs will switch to it; otherwise emacsclient will exit,signaling the calling program to continue.@samp{emacsclient} and @samp{server} must be running on machines whichshare the same filesystem for this to work. The pathnames that@samp{emacsclient} specifies should be correct for the filesystem thatthe Emacs process sees. The Emacs process should not be suspended atthe time @samp{emacsclient} is invoked. @samp{emacsclient} shouldeither be invoked from another X window or from a shell window insideEmacs itself.There is an enhanced version of @samp{emacsclient}/server called@samp{gnuserv} by @email{ange@@hplb.hpl.hp.com, Andy Norman} which isavailable in the Emacs Lisp Archive (@pxref{Packages that do not comewith Emacs}). @samp{gnuserv} uses Internet domain sockets, so it canwork across most network connections. It also supports the execution ofarbitrary Emacs Lisp forms and does not require the client program towait for completion.The alpha version of an enhanced @samp{gnuserv} is availableat@uref{ftp://ftp.wellfleet.com/netman/psmith/emacs/gnuserv-2.1alpha.tar.gz}@end itemize@node Compiler error messages, Indenting switch statements, Using an already running Emacs process, Common requests@section How do I make Emacs recognize my compiler's funny error messages?@cindex Compiler error messages, recognizing@cindex Recognizing non-standard compiler errors@cindex Regexps for recognizing compiler errors@cindex Errors, recognizing compilerThe variable @code{compilation-error-regexp-alist} helps control howEmacs parses your compiler output. It is a list of triples of the form:@code{(@var{regexp} @var{file-idx} @var{line-idx})}, where @var{regexp}, @var{file-idx} and@var{line-idx} are strings. To help determine what the constituentelements should be, load @file{compile.el} and then use @kbd{C-h vcompilation-error-regexp-alist @key{RET}}to see the current value. A good idea is to look at @file{compile.el}itself as the comments included for this variable are quite useful ---the regular expressions required for your compiler's output may be veryclose to one already provided. Once you have determined the properregexps, use the following to inform Emacs of your changes:@lisp(setq compilation-error-regexp-alist (cons '(REGEXP FILE-IDX LINE-IDX) compilation-error-regexp-alist))@end lisp@node Indenting switch statements, Horizontal scrolling, Compiler error messages, Common requests@section How do I change the indentation for @code{switch}?@cindex @code{switch}, indenting@cindex Indenting of @code{switch}Many people want to indent their @code{switch} statements like this:@examplef()@{ switch(x) @{ case A: x1; break; case B: x2; break; default: x3; @}@}@end exampleThe solution at first appears to be: set @code{c-indent-level} to 4 and@code{c-label-offset} to -2. However, this will give you an indentationspacing of four instead of two.The solution is to use @code{cc-mode} (the default mode for Cprogramming in Emacs 20) and add the following line:@lisp(c-set-offset 'case-label '+)@end lispThere appears to be no way to do this with the old @code{c-mode}.@node Horizontal scrolling, Overwrite mode, Indenting switch statements, Common requests@section How can I make Emacs automatically scroll horizontally?@cindex @code{hscroll-mode}@cindex Horizontal scrolling@cindex Scrolling horizontallyUse @code{hscroll-mode}, included in Emacs 20. Here is some information fromthe documentation, available by typing @kbd{C-h f hscroll-mode @key{RET}}:Automatically scroll horizontally when the point moves off theleft or right edge of the window. @itemize @minus@item Type @kbd{M-x hscroll-mode} to enable it in the current buffer.@item Type @kbd{M-x hscroll-global-mode} to enable it in every buffer.@item @code{turn-on-hscroll} is useful in mode hooks as in:@lisp(add-hook 'text-mode-hook 'turn-on-hscroll)@end lisp@item @code{hscroll-margin} controls how close the cursor can get to theedge of the window. @item @code{hscroll-step-percent} controls how far to jump once we decide to do so.@end itemize@node Overwrite mode, Turning off beeping, Horizontal scrolling, Common requests@section How do I make Emacs "typeover" or "overwrite" instead of inserting?@cindex @key{Insert}@cindex @code{overwrite-mode}@cindex Overwriting existing text@cindex Toggling @code{overwrite-mode}@kbd{M-x overwrite-mode} (a minor mode). This toggles@code{overwrite-mode} on and off, so exiting from @code{overwrite-mode}is as easy as another @kbd{M-x overwrite-mode}.On some workstations, @key{Insert} toggles @code{overwrite-mode} on and off.@node Turning off beeping, Turning the volume down, Overwrite mode, Common requests@section How do I stop Emacs from beeping on a terminal?@cindex Beeping, turning off@cindex Visible bell@cindex Bell, visible@email{martin@@cc.gatech.edu, Martin R. Frank} writes:Tell Emacs to use the "visible bell" instead of the audible bell, andset the visible bell to nothing.That is, put the following in your @code{TERMCAP} environment variable(assuming you have one):@example... :vb=: ... @end exampleAnd evaluate the following Lisp form:@example(setq visible-bell t)@end example@node Turning the volume down, Automatic indentation, Turning off beeping, Common requests@section How do I turn down the bell volume in Emacs running under X Windows?@cindex Bell, volume of@cindex Volume of bellYou can adjust the bell volume and duration for all programs with theshell command @file{xset}.Invoking @file{xset} without any arguments produces some basic information,including the following:@exampleusage: xset [-display host:dpy] option ... To turn bell off: -b b off b 0 To set bell volume, pitch and duration: b [vol [pitch [dur]]] b on@end example@node Automatic indentation, Matching parentheses, Turning the volume down, Common requests@section How do I tell Emacs to automatically indent a new line to the indentation of the previous line?@cindex Indenting new lines@cindex New lines, indenting of@cindex Previous line, indenting according toSuch behavior is automatic in Emacs 20. From the NEWS file for Emacs20.2:@example** In Text mode, now only blank lines separate paragraphs. This makesit possible to get the full benefit of Adaptive Fill mode in Text mode,and other modes derived from it (such as Mail mode). @key{TAB} in Textmode now runs the command @code{indent-relative}; this makes a practicaldifference only when you use indented paragraphs.As a result, the old Indented Text mode is now identical to Text mode,and is an alias for it.If you want spaces at the beginning of a line to start a paragraph, usethe new mode, Paragraph Indent Text mode.@end exampleIf you have @code{auto-fill-mode} on (@pxref{Turning on auto-fill bydefault}), you can tell Emacs to prefix every line with a certaincharacter sequence, the "fill prefix." Type the prefix at the beginningof a line, position point after it, and then type @kbd{C-x .}(@code{set-fill-prefix}) to set the fill prefix. Thereafter,auto-filling will automatically put the fill prefix at the beginning ofnew lines, and @kbd{M-q} (@code{fill-paragraph}) will maintain any fillprefix when refilling the paragraph.If you have paragraphs with different levels of indentation, you willhave to set the fill prefix to the correct value each time you move to anew paragraph. To avoid this hassle, try one of the many packagesavailable from the Emacs Lisp Archive (@pxref{Packages that do not comewith Emacs}.) Look up "fill" and "indent" in the Lisp Code Directoryfor guidance.@node Matching parentheses, Hiding #ifdef lines, Automatic indentation, Common requests@section How do I show which parenthesis matches the one I'm looking at?@cindex Parentheses, matching@cindex @file{paren.el}@cindex Highlighting matching parentheses@cindex Pairs of parentheses, highlighting@cindex Matching parenthesesAs of version 19, Emacs comes with @file{paren.el}, which (when loaded)will automatically highlight matching parentheses whenever point (i.e.,the cursor) is located over one. To load @file{paren.el} automatically,include the line@lisp(require 'paren)@end lispin your @file{.emacs} file. @email{shutkoa@@ugsolutions.com, Alan Shutko}reports that as of version 20.1, you must also call @code{show-paren-mode} inyour @file{.emacs} file:@lisp(show-paren-mode 1)@end lisp@code{customize} will let you turn on @code{show-paren-mode}. Use@kbd{M-x customize-group @key{RET} paren-showing @key{RET}}. Fromwithin @code{customize}, you can also go directly to the "paren-showing"group. Alternatives to paren include:@itemize @bullet@itemIf you're looking at a right parenthesis (or brace or bracket) you candelete it and reinsert it. Emacs will blink the cursor on the matchingparenthesis.@item@kbd{M-C-f} (@code{forward-sexp}) and @kbd{M-C-b} (@code{backward-sexp})will skip over one set of balanced parentheses, so you can see whichparentheses match. (You can train it to skip over balanced bracketsand braces at the same time by modifying the syntax @key{TAB}le.)@itemHere is some Emacs Lisp that will make the @key{%} key show the matchingparenthesis, like in vi. In addition, if the cursor isn't over aparenthesis, it simply inserts a % like normal.@lisp;; By an unknown contributor(global-set-key "%" 'match-paren)(defun match-paren (arg) "Go to the matching paren if on a paren; otherwise insert %." (interactive "p") (cond ((looking-at "\\s\(") (forward-list 1) (backward-char 1)) ((looking-at "\\s\)") (forward-char 1) (backward-list 1)) (t (self-insert-command (or arg 1)))))@end lisp@end itemize@node Hiding #ifdef lines, Repeating commands, Matching parentheses, Common requests@section In C mode, can I show just the lines that will be left after @code{#ifdef} commands are handled by the compiler?@cindex @code{#ifdef}, selective display of@cindex @code{hide-ifdef-mode}@cindex Hiding @code{#ifdef} text@cindex Selectively displaying @code{#ifdef} code@kbd{M-x hide-ifdef-mode}. (This is a minor mode.) You might also wantto try @file{cpp.el}, available at the Emacs Lisp Archive(@pxref{Packages that do not come with Emacs}).@node Repeating commands, Valid X resources, Hiding #ifdef lines, Common requests@section Is there an equivalent to the @code{.} (dot) command of vi?@cindex Repeating commands as with vi@cindex Command, repeat last@cindex @code{.}, equivalent to vi command(@code{.} is the redo command in vi. It redoes the last insertion/deletion.)As of Emacs 20.3, there is indeed a @code{repeat} command (@kbd{C-x .})that repeats the last command. If you preface it with a prefixargument, the prefix arg is applied to the command.You can also type @kbd{C-x @key{ESC} @key{ESC}}(@code{repeat-complex-command}) to reinvoke commands that used theminibuffer to get arguments. In @code{repeat-complex-command} you cantype @kbd{M-p} and @kbd{M-n} to scan through all the different complexcommands you've typed.To repeat a set of commands, use keyboard macros. (@inforef{KeyboardMacros, Keyboard Macros, emacs}.)If you're really desperate for the @code{.} command, use VIPER, which comeswith Emacs, and which appears to support it. (@xref{VIPER}.)@node Valid X resources, Evaluating Emacs Lisp code, Repeating commands, Common requests@section What are the valid X resource settings (i.e., stuff in .Xdefaults)?@cindex Resources, X@cindex X resources@cindex Setting X resources@inforef{Resources X, Resources X, emacs}.You can also use a resource editor, such as editres (for X11R5 andonwards), to look at the resource names for the menu bar, assuming Emacswas compiled with the X toolkit.@node Evaluating Emacs Lisp code, Changing the length of a Tab, Valid X resources, Common requests@section How do I execute ("evaluate") a piece of Emacs Lisp code?@cindex Evaluating Lisp code@cindex Lisp forms, evaluatingThere are a number of ways to execute ("evaluate," in Lisp lingo) anEmacs Lisp "form":@itemize @bullet@itemIf you want it evaluated every time you run Emacs, put it in a filenamed @file{.emacs} in your home directory. This is known as your ".emacsfile," and contains all of your personal customizations.@itemYou can type the form in the @file{*scratch*} buffer, and then type@key{LFD} (or @kbd{C-j}) after it. The result of evaluating the formwill be inserted in the buffer.@itemIn @code{emacs-lisp-mode}, typing @kbd{M-C-x} evaluates a top-level formbefore or around point.@itemTyping @kbd{C-x C-e} in any buffer evaluates the Lisp form immediatelybefore point and prints its value in the echo area.@itemTyping @kbd{M-:} or @kbd{M-x eval-expression} allows you to type a Lispform in the minibuffer which will be evaluated.@itemYou can use @kbd{M-x load-file} to have Emacs evaluate all the Lispforms in a file. (To do this from Lisp use the function @code{load}instead.)The functions @code{load-library}, @code{eval-region},@code{eval-current-buffer}, @code{require}, and @code{autoload} are alsouseful; @pxref{Emacs Lisp documentation} if you want to learn more aboutthem.@end itemize@node Changing the length of a Tab, Inserting > at the beginning of each line, Evaluating Emacs Lisp code, Common requests@section How do I change Emacs's idea of the @key{TAB} character's length?@cindex Tab length@cindex Length of tab character@cindex @code{default-tab-width} Set the variable @code{default-tab-width}. For example, to set@key{TAB} stops every 10 characters, insert the following in your@file{.emacs} file:@lisp(setq default-tab-width 10)@end lispDo not confuse variable @code{tab-width} with variable@code{tab-stop-list}. The former is used for the display of literal@key{TAB} characters. The latter controls what characters are insertedwhen you press the @key{TAB} character in certain modes.@node Inserting > at the beginning of each line, Underlining paragraphs, Changing the length of a Tab, Common requests@section How do I insert @samp{>} at the beginning of every line?@cindex Prefix character, inserting in mail/news replies@cindex Replies to mail/news, inserting a prefix character@cindex @code{mail-yank-prefix}@cindex Mail replies, inserting a prefix character@cindex News replies, inserting a prefix characterTo do this to an entire buffer, type @kbd{M-< M-x replace-regexp@key{RET} ^ @key{RET} > @key{RET}}.To do this to a region, use @code{string-rectangle} (@kbd{C-x r t}).Set the mark (@kbd{C-@key{SPC}}) at the beginning of the first line youwant to prefix, move the cursor to last line to be prefixed, and type@kbd{C-x r t > @key{RET}}. To do this for the whole buffer, type@kbd{C-x h C-x r t > @key{RET}}.If you are trying to prefix a yanked mail message with @samp{>}, youmight want to set the variable @code{mail-yank-prefix}. Better yet, getthe Supercite package (@pxref{Supercite}), which provides flexiblecitation for yanked mail and news messages. @xref{Changing the includedtext prefix}, for additional information.@node Underlining paragraphs, Repeating a command as many times as possible, Inserting > at the beginning of each line, Common requests@section How do I insert "_^H" before each character in a region to get an underlined paragraph?@cindex Underlining a region of text@cindex @code{underline-region}@kbd{M-x underline-region}.@node Repeating a command as many times as possible, Forcing the cursor to remain in the same column, Underlining paragraphs, Common requests@section How do I repeat a command as many times as possible?@cindex Repeating commands@cindex Commands, repeatingUse @kbd{C-x (} and @kbd{C-x )} to make a keyboard macro that invokesthe command and then type @kbd{M-0 C-x e}.Any messages your command prints in the echo area will be suppressed.@node Forcing the cursor to remain in the same column, Forcing Emacs to iconify itself, Repeating a command as many times as possible, Common requests@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?@cindex @code{picture-mode}@cindex Remaining in the same column, regardless of contents@cindex Vertical movement in empty documents@kbd{M-x picture-mode}.@node Forcing Emacs to iconify itself, Using regular expressions, Forcing the cursor to remain in the same column, Common requests@section How do I tell Emacs to iconify itself?@cindex Iconification under X Windows@cindex X Windows and iconification@cindex Suspending Emacs@kbd{C-z} iconifies Emacs when running under X Windows and suspends Emacsotherwise. @inforef{Misc X, Misc X, emacs}.@node Using regular expressions, Replacing text across multiple files, Forcing Emacs to iconify itself, Common requests@section How do I use regexps (regular expressions) in Emacs?@cindex Regexps@cindex Regular expressions@cindex Differences between Unix and Emacs regexps@cindex Unix regeps, differences from Emacs@cindex Text strings, putting regexps in@inforef{Regexps, Regexps, emacs}.The "or" operator is @samp{\|}, not @samp{|}, and the grouping operatorsare @samp{\(} and @samp{\)}. Also, the string syntax for a backslash is@samp{\\}. To specify a regular expression like @samp{xxx\(foo\|bar\)}in a Lisp string, use @samp{xxx\\(foo\\|bar\\)}.Notice the doubled backslashes!@itemize @bullet@item Unlike in Unix @file{grep}, @file{sed}, etc., a complementcharacter set (@samp{[^...]}) can match a newline character (@key{LFD}aka @kbd{C-j} aka @samp{\n}), unless newline is mentioned as one of thecharacters not to match.@item The character syntax regexps (e.g., @samp{\sw}) are notmeaningful inside character set regexps (e.g., @samp{[aeiou]}). (Thisis actually typical for regexp syntax.)@end itemize@node Replacing text across multiple files, Documentation for etags, Using regular expressions, Common requests@section How do I perform a replace operation across more than one file?@cindex Replacing strings across files@cindex Multiple files, replacing across@cindex Files, replacing strings across multipleThe "tags" feature of Emacs includes the command@code{tags-query-replace} which performs a query-replace across all thefiles mentioned in the TAGS file. @inforef{Tags Search, Tags Search,emacs}.As of Emacs 19.29, Dired mode (@kbd{M-x dired @key{RET}}, or @kbd{C-xd}) supports the command @code{dired-do-query-replace}, which allowsusers to replace regular expressions in multiple files.@node Documentation for etags, Disabling backups, Replacing text across multiple files, Common requests@section Where is the documentation for @file{etags}?@cindex Documentation for @file{etags}@cindex @file{etags}, documentation forThe @file{etags} man page should be in the same place as the@file{emacs} man page.Quick command-line switch descriptions are also available. For example,@samp{etags -H}.@node Disabling backups, Disabling auto-save-mode, Documentation for etags, Common requests@section How do I disable backup files?@cindex Backups, disabling@cindex Disabling backupsYou probably don't want to do this, since backups are useful.To avoid seeing backup files (and other "uninteresting" files) in Dired,load dired-x by adding the following to your @file{.emacs} file:@lisp(add-hook 'dired-load-hook (lambda () (load "dired-x")))@end lispWith dired-x loaded, @kbd{M-o} toggles omitting in each dired buffer.You can make omitting the default for new dired buffers by putting thefollowing in your @file{.emacs}:@lisp(setq initial-dired-omit-files-p t)@end lispIf you're tired of seeing backup files whenever you do an "ls" at theUnix shell, try GNU ls with the "-B" option. GNU ls is part of the GNUfileutils package, available at mirrors of @samp{ftp.gnu.org} (@pxref{Current GNU distributions} ).To disable or change how backups are made, see "Backup Names" in theon-line manual.@node Disabling auto-save-mode, Modifying pull-down menus, Disabling backups, Common requests@section How do I disable @code{auto-save-mode}?@cindex Disabling @code{auto-save-mode}@cindex Auto-saving@cindex Saving at frequent intervalsYou probably don't want to do this, since auto-saving is useful,especially when Emacs or your computer crashes while you are editing adocument.Instead, you might want to change the variable@code{auto-save-interval}, which specifies how many keystrokes Emacswaits before auto-saving. Increasing this value forces Emacs to waitlonger between auto-saves, which might annoy you less.You might also want to look into Sebastian Kremer's @code{auto-save}package, available from the Lisp Code Archive (@pxref{Packages that do not comewith Emacs}). Thispackage also allows you to place all auto-save files in one directory,such as @file{/tmp}.To disable or change how @code{auto-save-mode} works, see "Auto Save" in theon-line manual.@node Modifying pull-down menus, Deleting menus and menu options, Disabling auto-save-mode, Common requests@section How can I create or modify new pull-down menu options?@cindex Pull-down menus, creating or modifying@cindex Menus, creating or modifying@cindex Creating new menu options@cindex Modifying pull-down menus@cindex Menus and keymaps@cindex Keymaps and menusEach menu title (e.g., Buffers, File, Edit) represents a local or globalkeymap. Selecting a menu title with the mouse displays that keymap'snon-nil contents in the form of a menu.So to add a menu option to an existing menu, all you have to do is add anew definition to the appropriate keymap. Adding a "forward word"command to the "Edit" menu thus requires the following Lisp code:@lisp(define-key global-map [menu-bar edit forward] '("Forward word" . forward-word))@end lispThe first line adds the entry to the global keymap, which includesglobal menu bar entries. Replacing the reference to @code{global-map}with a local keymap would add this menu option only within a particularmode.The second line describes the path from the menu-bar to the new entry.Placing this menu entry underneath the "File" menu would mean changingthe word "edit" in the second line to "file."The third line is a cons cell whose first element is the title that willbe displayed, and whose second element is the function that will becalled when that menu option is invoked.To add a new menu, rather than a new option to an existing menu, we mustdefine an entirely new keymap:@lisp(define-key global-map [menu-bar words] (cons "Words" (make-sparse-keymap "Words")))@end lispThe above code creates a new sparse keymap, gives it the name "Words",and attaches it to the global menu bar. Adding the "forward word"command to this new menu would thus require the following code:@lisp(define-key global-map [menu-bar words forward] '("Forward word" . forward-word))@end lispNote that because of the way keymaps work, menu options are displayedwith the more recently defined items at the top. Thus if you were todefine menu options "foo", "bar", and "baz" (in that order), menu option"baz" would appear at the top, and "foo" would be at the bottom.One way to avoid this problem is to use the function @code{define-key-after},which works the same as @code{define-key}, but lets you modify where itemsappear. The following Lisp code would insert the "forward word" functionin the "edit" menu immediately following the "undo" option:@lisp(define-key-after (lookup-key global-map [menu-bar edit]) [forward] '("Forward word" . forward-word) 'undo)@end lispNote how the second and third arguments to @code{define-key-after} aredifferent from those of @code{define-key}, and that we have added a new(final) argument, the function after which our new key should bedefined.To move a menu option from one position to another, simply evaluate@code{define-key-after} with the appropriate final argument.More detailed information --- and more examples of how to create andmodify menu options --- are in the Emacs Lisp Reference Manual, under"Keymaps". (@pxref{Emacs Lisp documentation} for information on thismanual.)@node Deleting menus and menu options, Turning on syntax highlighting, Modifying pull-down menus, Common requests@section How do I delete menus and menu options?@cindex Deleting menus and menu options@cindex Menus, deletingThe simplest way to remove a menu is to set its keymap to @samp{nil}.For example, to delete the "Words" menu (@pxref{Modifying pull-downmenus}), use:@lisp(define-key global-map [menu-bar words] nil)@end lispSimilarly, removing a menu option requires redefining a keymap entry to@code{nil}. For example, to delete the "Forward word" menu option from the"Edit" menu (we added it in @ref{Modifying pull-down menus}), use:@lisp(define-key global-map [menu-bar edit forward] nil)@end lisp@node Turning on syntax highlighting, Scrolling only one line, Deleting menus and menu options, Common requests@section How do I turn on syntax highlighting?@cindex Syntax highlighting@cindex @code{font-lock-mode}@cindex Highlighting based on syntax@cindex Colorizing text@cindex FAQ, @code{font-lock-mode}@code{font-lock-mode} is the standard way to have Emacs perform syntaxhighlighting. With @code{font-lock-mode} invoked, different types oftext will appear in different colors. For instance, if you turn on@code{font-lock-mode} in a programming mode, variables will appear in oneface, keywords in a second, and comments in a third.Earlier versions of Emacs supported hilit19, a similar package. Use ofhilit19 is now considered non-standard, although @file{hilit19.el} comeswith the stock Emacs distribution. It is no longer maintained.To turn @code{font-lock-mode} on within an existing buffer, use @kbd{M-xfont-lock-mode @key{RET}}.To automatically invoke @code{font-lock-mode} when a particular majormode is invoked, set the major mode's hook. For example, to fontify all@code{c-mode} buffers, add the following to your @file{.emacs} file:@lisp(add-hook 'c-mode-hook 'turn-on-font-lock)@end lispTo automatically invoke @code{font-lock-mode} for all major modes, youcan turn on @code{global-font-lock-mode} by including the following linein your @file{.emacs} file:@lisp(global-font-lock-mode 1)@end lispThis instructs Emacs to turn on font-lock mode in those buffers forwhich a font-lock mode definition has been provided (in the variable@code{font-lock-global-modes}). If you edit a file in@code{pie-ala-mode}, and no font-lock definitions have been provided for@code{pie-ala} files, then the above setting will have no effect on thatparticular buffer.Highlighting with @code{font-lock-mode} can take quite a while, and thusdifferent levels of decoration are available, from slight to gaudy. Tocontrol how decorated your buffers should become, set the value of@code{font-lock-maximum-decoration} in your @file{.emacs} file, with a@code{nil} value indicating default (usually minimum) decoration, and a@code{t} value indicating the maximum decoration. For the gaudiestpossible look, then, include the line@lisp(setq font-lock-maximum-decoration t)@end lispin your @file{.emacs} file. You can also set this variable such thatdifferent modes are highlighted in a different ways; for moreinformation, see the documentation for@code{font-lock-maximum-decoration} with @kbd{C-h v} (or @kbd{M-xdescribe-variable @key{RET}}).You might also want to investigate @code{fast-lock-mode} and@code{lazy-lock-mode}, versions of @code{font-lock-mode} that speed uphighlighting. The advantage of @code{lazy-lock-mode} is that it onlyfontifies buffers when certain conditions are met, such as after acertain amount of idle time, or after you have finished scrollingthrough text. See the documentation for @code{lazy-lock-mode} by typing @kbd{C-h f@code{lazy-lock-mode}} (@kbd{M-x describe-function @key{RET}lazy-lock-mode @key{RET}}).Also see the documentation for the function @code{font-lock-mode},available by typing @kbd{C-h f font-lock-mode} (@kbd{M-xdescribe-function @key{RET} font-lock-mode @key{RET}}).For more information on font-lock mode, take a look at the@code{font-lock-mode} FAQ, maintained by@email{jari.aalto@@ntc.nokia.com, Jari Aalto} at@uref{ftp://cs.uta.fi/pub/ssjaaa/ema-font.gui}To print buffers with the faces (i.e., colors and fonts) intact, use@kbd{M-x ps-print-buffer-with-faces} or @kbd{M-xps-print-region-with-faces}.@node Scrolling only one line, Replacing highlighted text, Turning on syntax highlighting, Common requests@section How can I force Emacs to scroll only one line when I move past the bottom of the screen?@cindex Scrolling only one line@cindex Reducing the increment when scrollngPlace the following Lisp form in your @file{.emacs} file:@lisp(setq scroll-step 1)@end lisp@inforef{Scrolling, Scrolling, emacs}.@node Replacing highlighted text, Editing MS-DOS files, Scrolling only one line, Common requests@section How can I replace highlighted text with what I type?@cindex @code{delete-selection-mode}@cindex Replacing highlighted text@cindex Highlighing and replacing textUse @code{delete-selection mode}, which you can start automatically byplacing the following Lisp form in your @file{.emacs} file:@lisp(delete-selection-mode t)@end lispAccording to the documentation string for delete-selection mode (whichyou can read using @kbd{M-x describe-function @key{RET}delete-selection-mode @key{RET}}):@quotationWhen ON, typed text replaces the selection if the selection is active.When OFF, typed text is just inserted at point.@end quotationThis mode also allows you to delete (not kill) the highlighted region bypressing @key{DEL}.@node Editing MS-DOS files, Filling paragraphs with a single space, Replacing highlighted text, Common requests@section How can I edit MS-DOS files using Emacs?@cindex Editing MS-DOS files@cindex MS-DOS files, editing@cindex Microsoft files, editing@cindex Windows files, editingAs of Emacs 20, detection and handling of MS-DOS (and Windows) files isperformed transparently. You can open MS-DOS files on a Unix system,edit it, and save it without having to worry about the file format.When editing an MS-DOS style file, a backslash (@samp{\}) will appear inthe mode line.If you are running an earlier version of Emacs, get @code{crypt++} fromthe Emacs Lisp Archive (@pxref{Packages that do not come with Emacs}).Among other things, @code{crypt++} transparently modifies MS-DOS filesas they are loaded and saved, allowing you to ignore the differentconventions that Unix and MS-DOS have for delineating the end of a line.@node Filling paragraphs with a single space, , Editing MS-DOS files, Common requests@section How can I tell Emacs to fill paragraphs with a single space after each period?@cindex One space following periods@cindex Single space following periods@cindex Periods, one space following@email{ulm@@vsnhd1.cern.ch, Ulrich Mueller} suggests adding thefollowing two lines to your @file{.emacs} file:@lisp(setq sentence-end "[.?!][]\"')@}]*\\($\\|[ \t]\\)[ \t\n]*")(setq sentence-end-double-space nil)@end lisp@c ------------------------------------------------------------@node Bugs and problems, Compiling and installing Emacs, Common requests, Top@chapter Bugs and problems@cindex Bugs and problems@menu* Problems with very large files:: * ^M in the shell buffer:: * Shell process exits abnormally:: * Termcap/Terminfo entries for Emacs:: * Spontaneous entry into isearch-mode:: * Problems talking to certain hosts:: * Errors with init files:: * Emacs ignores X resources:: * Emacs takes a long time to visit files:: * Editing files with $ in the name:: * Shell mode loses the current directory:: * Security risks with Emacs:: * Dired claims that no file is on this line:: @end menu@node Problems with very large files, ^M in the shell buffer, Bugs and problems, Bugs and problems@section Does Emacs have problems with files larger than 8 megabytes?@cindex Very large files, opening@cindex Large files, opening@cindex Opening very large files@cindex Maximum file size@cindex Files, maximum sizeOld versions (i.e., anything before 19.29) of Emacs had problems editingfiles larger than 8 megabytes. As of version 19.29, the maximum buffersize is at least 2^27-1, or 134,217,727 bytes.If you are using an older version of Emacs and cannot upgrade, you willhave to recompile. @email{lnz@@lucid.com, Leonard N. Zubkoff} suggestsputting the following two lines in @file{src/config.h} before compilingEmacs to allow for 26-bit integers and pointers (and thus file sizes ofup to 33,554,431 bytes):@example#define VALBITS 26#define GCTYPEBITS 5@end exampleThis method may result in "ILLEGAL DATATYPE" and other random errors onsome machines.@email{daveg@@csvax.cs.caltech.edu, David Gillespie} explains how thisproblems crops up; while his numbers are true only for pre-19.29versions of Emacs, the theory remains the same with current versions.@quotationEmacs is largely written in a dialect of Lisp; Lisp is a freely-typedlanguage in the sense that you can put any value of any type into anyvariable, or return it from a function, and so on. So each valuemust carry a "tag" along with it identifying what kind of thing it is,e.g., integer, pointer to a list, pointer to an editing buffer, and soon. Emacs uses standard 32-bit integers for data objects, taking thetop 8 bits for the tag and the bottom 24 bits for the value. Sointegers (and pointers) are somewhat restricted compared to true Cintegers and pointers.@end quotation@node ^M in the shell buffer, Shell process exits abnormally, Problems with very large files, Bugs and problems@section How do I get rid of @samp{^M} or echoed commands in my shell buffer?@cindex Shell buffer, echoed commands and @samp{^M} in@cindex Echoed commands in @code{shell-mode}Try typing @kbd{M-x shell-strip-ctrl-m @key{RET}} while in @code{shell-mode} tomake them go away. If that doesn't work, you have several options:For tcsh, put this in your @file{.cshrc} (or @file{.tcshrc}) file:@exampleif ($?EMACS) then if ("$EMACS" == t) then if ($?tcsh) unset edit stty nl endifendif@end exampleOr put this in your @file{.emacs_tcsh} file:@exampleunset editstty nl@end exampleAlternatively, use @file{csh} in your shell buffers instead of@file{tcsh}. One way is:@lisp(setq explicit-shell-file-name "/bin/csh")@end lispand another is to do this in your @file{.cshrc} (or @file{.tcshrc})file:@examplesetenv ESHELL /bin/csh@end example(You must start Emacs over again with the environment variable properlyset for this to take effect.)You can also set the @code{ESHELL} environment variable in Emacs Lispwith the following Lisp form,@lisp(setenv "ESHELL" "/bin/csh")@end lispOn a related note: If your shell is echoing your input line in the shellbuffer, you might want to try the following command in your shellstart-up file:@examplestty -icrnl -onlcr -echo susp ^Z@end example@node Shell process exits abnormally, Termcap/Terminfo entries for Emacs, ^M in the shell buffer, Bugs and problems@section Why do I get "Process shell exited abnormally with code 1"?@cindex Abnormal exits from @code{shell-mode}@cindex @code{shell-mode} exitsThe most likely reason for this message is that the @samp{env} programis not properly installed. Compile this program for your architecture,and install it with @samp{a+x} permission in the architecture-dependentEmacs program directory. (You can find what this directory is at yoursite by inspecting the value of the variable @code{exec-directory} bytyping @kbd{C-h v exec-directory @key{RET}}.)You should also check for other programs named @samp{env} in your path(e.g., SunOS has a program named @file{/usr/bin/env}). We don'tunderstand why this can cause a failure and don't know a generalsolution for working around the problem in this case.The @samp{make clean} command will remove @samp{env} and other vitalprograms, so be careful when using it.It has been reported that this sometimes happened when Emacs was startedas an X client from an xterm window (i.e., had a controlling tty) but thexterm was later terminated.See also @samp{PROBLEMS} (in the top-level directory when you unpack theEmacs source) for other possible causes of this message.@node Termcap/Terminfo entries for Emacs, Spontaneous entry into isearch-mode, Shell process exits abnormally, Bugs and problems@section Where is the termcap/terminfo entry for terminal type "emacs"?@cindex Termcap@cindex Terminfo@cindex Emacs entries for termcap/terminfoThe termcap entry for terminal type @samp{emacs} is ordinarily put inthe @samp{TERMCAP} environment variable of subshells. It may help incertain situations (e.g., using rlogin from shell buffer) to add anentry for @samp{emacs} to the system-wide termcap file. Here is acorrect termcap entry for @samp{emacs}:@exampleemacs:tc=unknown:@end exampleTo make a terminfo entry for "emacs", use "tic" or "captoinfo." You needto generate @file{/usr/lib/terminfo/e/emacs}. It may work to simply copy@file{/usr/lib/terminfo/d/dumb} to @file{/usr/lib/terminfo/e/emac}s.Having a termcap/terminfo entry will not enable the use of full screenprograms in shell buffers. Use @kbd{M-x terminal-emulator} for thatinstead.A workaround to the problem of missing termcap/terminfo entries is tochange terminal type "emacs" to type "dumb" or "unknown" in your shellstart up file. "csh" users could put this in their .cshrc files:@exampleif ("$term" == emacs) set term=dumb@end example@node Spontaneous entry into isearch-mode, Problems talking to certain hosts, Termcap/Terminfo entries for Emacs, Bugs and problems@section Why does Emacs spontaneously start displaying "I-search:" and beeping?@cindex Spontaneous entry into isearch-mode@cindex isearch-mode, spontaneous entry into@cindex Beeping without obvious reasonYour terminal (or something between your terminal and the computer) issending @kbd{C-s} and @kbd{C-q} for flow control, and Emacs is receivingthese characters and interpreting them as commands. (The @kbd{C-s}character normally invokes the @code{isearch-forward} command.) Forpossible solutions, @pxref{Handling C-s and C-q with flow control}.@node Problems talking to certain hosts, Errors with init files, Spontaneous entry into isearch-mode, Bugs and problems@section Why can't Emacs talk to certain hosts (or certain hostnames)?@cindex Hosts, Emacs cannot talk to@cindex @code{gethostbyname}, problematic versionThe problem may be that Emacs is linked with a wimpier version of@code{gethostbyname} than the rest of the programs on the machine. Thisis often manifested as a message on startup of "X server not responding.Check your @samp{DISPLAY} environment variable." or a message of"Unknown host" from @code{open-network-stream}.On a Sun, this may be because Emacs had to be linked with the static Clibrary. The version of @code{gethostbyname} in the static C librarymay only look in @file{/etc/hosts} and the NIS (YP) maps, while theversion in the dynamic C library may be smart enough to check DNS inaddition to or instead of NIS. On a Motorola Delta running System VR3.6, the version of @code{gethostbyname} in the standard library works,but the one that works with NIS doesn't (the one you get with -linet).Other operating systems have similar problems.Try these options:@itemize @bullet@itemExplicitly add the host you want to communicate with to @file{/etc/hosts}.@itemRelink Emacs with this line in @file{src/config.h}:@example#define LIBS_SYSTEM -lresolv@end example@itemReplace @code{gethostbyname} and friends in @file{libc.a} with moreuseful versions such as the ones in @file{libresolv.a}. Then relinkEmacs.@itemIf you are actually running NIS, make sure that "ypbind" is properlytold to do DNS lookups with the correct command line switch.@end itemize@node Errors with init files, Emacs ignores X resources, Problems talking to certain hosts, Bugs and problems@section Why does Emacs say "Error in init file"?@cindex Error in @file{.emacs}@cindex Error in init file@cindex Init file, errors in@cindex @file{.emacs} file, errors in@cindex Debugging @file{.emacs} fileAn error occurred while loading either your @file{.emacs} file or thesystem-wide file @file{lisp/default.el}.For information on how to debug your @file{.emacs} file,@pxref{Debugging a customization file}.It may be the case that you need to load some package first, or use ahook that will be evaluated after the package is loaded. A common caseof this is explained in @ref{Terminal setup code works after Emacs hasbegun}.@node Emacs ignores X resources, Emacs takes a long time to visit files, Errors with init files, Bugs and problems@section Why does Emacs ignore my X resources (my .Xdefaults file)?@cindex X resources being ignored@cindex Ignored X resources@cindex @file{.Xdefaults}As of version 19, Emacs searches for X resources in the files specifiedby the following environment variables:@itemize @bullet@item @code{XFILESEARCHPATH}@item @code{XUSERFILESEARCHPATH}@item @code{XAPPLRESDIR} @end itemizeThis emulates the functionality provided by programs written using Xt.@code{XFILESEARCHPATH} and @code{XUSERFILESEARCHPATH} should be a listof file names separated by colons. @code{XAPPLRESDIR} should be a listof directory names separated by colons.Emacs searches for X resources:@enumerate@item specified on the command line, with the @samp{-xrm RESOURCESTRING} option,@item then in the value of the @samp{XENVIRONMENT} environment variable,@itemize @minus @item or if that is unset, in the file named @samp{~/.Xdefaults-HOSTNAME} if it exists (where @samp{HOSTNAME} is the hostname of the machine Emacs is running on),@end itemize@item then in the screen-specific and server-wide resource properties provided by the server,@itemize @minus@item or if those properties are unset, in the file named ~/.Xdefaults if it exists,@end itemize@item then in the files listed in @samp{XUSERFILESEARCHPATH},@itemize @minus@item or in files named @file{LANG/Emacs} in directories listed in @samp{XAPPLRESDIR} (where @samp{LANG} is the value of the @samp{LANG} environment variable), if the @samp{LANG} environment variable is set,@item or in files named Emacs in the directories listed in @samp{XAPPLRESDIR}@item or in @file{~/LANG/Emacs} (if the @samp{LANG} environment variable is set),@item or in @file{~/Emacs},@end itemize@item then in the files listed in @code{XFILESEARCHPATH}.@end enumerate@node Emacs takes a long time to visit files, Editing files with $ in the name, Emacs ignores X resources, Bugs and problems@section Why does Emacs take 20 seconds to visit a file?@cindex Visiting files takes a long time@cindex Delay when visiting files@cindex Files, take a long time to visitOld versions of Emacs (i.e., versions before Emacs 20.x) oftenencountered this when the master lock file, @file{!!!SuperLock!!!} hasbeen left in the lock directory somehow. Delete it.@email{meuer@@geom.umn.edu, Mark Meuer} says that NeXT NFS has a bugwhere an exclusive create succeeds but returns an error status. Thiscan cause the same problem. Since Emacs's file locking doesn't workover NFS anyway, the best solution is to recompile Emacs with@code{CLASH_DETECTION} undefined.@node Editing files with $ in the name, Shell mode loses the current directory, Emacs takes a long time to visit files, Bugs and problems@section How do I edit a file with a @samp{$} in its name?@cindex Editing files with @samp{$} in the name@cindex @samp{$} in filenames@cindex Filenames containing @samp{$}, editingWhen entering a filename in the minibuffer, Emacs will attempt to expanda @samp{$} followed by a word as an environment variable. To suppressthis behavior, type @kbd{$$} instead.@node Shell mode loses the current directory, Security risks with Emacs, Editing files with $ in the name, Bugs and problems@section Why does shell mode lose track of the shell's current directory?@cindex Current directory and @code{shell-mode}@cindex @code{shell-mode} and current directory@cindex Directory, current in @code{shell-mode}Emacs has no way of knowing when the shell actually changes itsdirectory. This is an intrinsic limitation of Unix. So it tries toguess by recognizing @samp{cd} commands. If you type "cd" followed by adirectory name with a variable reference (@samp{cd $HOME/bin}) or with ashell metacharacter (@samp{cd ../lib*}), Emacs will fail to correctlyguess the shell's new current directory. A huge variety of fixes andenhancements to shell mode for this problem have been written to handlethis problem. Check the Lisp Code Directory (@pxref{Finding a packagewith particular functionality}).You can tell Emacs the shell's current directory with the command@kbd{M-x dirs}.@node Security risks with Emacs, Dired claims that no file is on this line, Shell mode loses the current directory, Bugs and problems@section Are there any security risks in Emacs?@cindex Security with Emacs@cindex @samp{movemail} and security@cindex @code{file-local-variable} and security@cindex Synthetic X events and security@cindex X events and security@itemize @bullet@item The @file{movemail} incident (No, this is not a risk.)In his book @emph{The Cuckoo's Egg}, Cliff Stoll describes this inchapter 4. The site at LBL had installed the @file{etc/movemail}program setuid root. (As of version 19, @file{movemail} is in yourarchitecture-specific directory; type @kbd{C-h v exec-directory@key{RET}} to see what it is.) Since @file{movemail} had not beendesigned for this situation, a security hole was created and users couldget root privileges.@file{movemail} has since been changed so that this security hole willnot exist, even if it is installed setuid root. However,@file{movemail} no longer needs to be installed setuid root, whichshould eliminate this particular risk.We have heard unverified reports that the 1988 Internet worm tookadvantage of this configuration problem.@item The @code{file-local-variable} feature (Yes, a risk, but easy to change.)There is an Emacs feature that allows the setting of local values forvariables when editing a file by including specially formatted text nearthe end of the file. This feature also includes the ability to havearbitrary Emacs Lisp code evaluated when the file is visited.Obviously, there is a potential for Trojan horses to exploit thisfeature.Emacs 18 allowed this feature by default; users could disable it bysetting the variable @code{inhibit-local-variables} to a non-nil value.As of Emacs 19, Emacs has a list of local variables that create asecurity risk. If a file tries to set one of them, it asks the user toconfirm whether the variables should be set. You can also tell Emacswhether to allow the evaluation of Emacs Lisp code found at the bottomof files by setting the variable @code{enable-local-eval}.For more information, @inforef{File Variables, File Variables, emacs}.@item Synthetic X events (Yes, a risk; use @samp{MIT-MAGIC-COOKIE-1} or better.)Emacs accepts synthetic X events generated by the SendEvent request asthough they were regular events. As a result, if you are using thetrivial host-based authentication, other users who can open Xconnections to your X workstation can make your Emacs process doanything, including run other processes with your privileges.The only fix for this is to prevent other users from being able to openX connections. The standard way to prevent this is to use a realauthentication mechanism, such as @samp{MIT-MAGIC-COOKIE-1}. If usingthe @file{xauth} program has any effect, then you are probably using@samp{MIT-MAGIC-COOKIE-1}. Your site may be using a superiorauthentication method; ask your system administrator.If real authentication is not a possibility, you may be satisfied byjust allowing hosts access for brief intervals while you start your Xprograms, then removing the access. This reduces the risk somewhat bynarrowing the time window when hostile users would have access, but@emph{does not eliminate the risk}.On most computers running Unix and X Windows, you enable and disableaccess using the @file{xhost} command. To allow all hosts access toyour X server, use@examplexhost +@end exampleat the shell prompt, which (on an HP machine, at least) produces thefollowing message:@exampleaccess control disabled, clients can connect from any host@end exampleTo deny all hosts access to your X server (except those explicitlyallowed by name), use@examplexhost -@end exampleOn the test HP computer, this command generated the following message:@exampleaccess control enabled, only authorized clients can connect@end example@end itemize@node Dired claims that no file is on this line, , Security risks with Emacs, Bugs and problems@section Dired says, "no file on this line" when I try to do something.@cindex Dired does not see a fileChances are you're using a localized version of Unix that doesn't use USdate format in dired listings. You can check this by looking at diredlistings or by typing @code{ls -l} to a shell and looking at the dates thatcome out.Dired uses a regular expression to find the beginning of a file name.In a long Unix-style directory listing ("ls -l"), the file name startsafter the date. The regexp has thus been written to look for the date,the format of which can vary on non-US systems.There are two approaches to solving this. The first one involvessetting things up so that "ls -l" outputs US date format. This can bedone by setting the locale. See your OS manual for more information.The second approach involves changing the regular expression used bydired, @code{dired-move-to-filename-regexp}.@c ------------------------------------------------------------@node Compiling and installing Emacs, Finding Emacs and related packages, Bugs and problems, Top@chapter Compiling and installing Emacs@cindex Compiling and installing Emacs@menu* Installing Emacs:: * Updating Emacs:: * Problems building Emacs:: * Linking with -lX11 fails:: @end menu@node Installing Emacs, Updating Emacs, Compiling and installing Emacs, Compiling and installing Emacs@section How do I install Emacs?@cindex Installing Emacs@cindex Unix systems, installing Emacs on@cindex Downloading and installing Emacs@cindex Retrieving and installing Emacs@cindex Building Emacs from source@cindex Source code, building Emacs from@cindex Unpacking and installing EmacsThis answer is meant for users of Unix and Unix-like systems. Users ofother operating systems should see the series of questions beginningwith @ref{Emacs for MS-DOS}, which describe where to get non-Unix sourceand binaries. These packages should come with installationinstructions.For Unix and Unix-like systems, the easiest way is often to compile itfrom scratch. You will need:@itemize @bullet@itemEmacs sources. @xref{Current GNU distributions}, for a list of ftp sitesthat make them available. On @file{ftp.gnu.org}, the main GNUdistribution site, sources are available at@uref{ftp://ftp.gnu.org/pub/gnu/emacs/emacs-20.5.tar.gz}The above will obviously change as new versions of Emacs come out. Forinstance, when Emacs 21 is released, it will most probably beavailable at@uref{ftp://ftp.gnu.org/pub/gnu/emacs/emacs-21.1.tar.gz}Again, you should use one of the GNU mirror sites (@xref{Current GNUdistributions}, and adjust the URL accordingly) so as to reduce load on@file{ftp.gnu.org}.@item@code{gzip}, the GNU compression utility. You can get @code{gzip} viaanonymous ftp at mirrors of @file{ftp.gnu.org} sites; it should compileand install without much trouble on most systems. Once you haveretrieved the Emacs sources, you will probably be able to uncompressthem with the command@examplegunzip --verbose emacs-20.5.tar.gz@end examplechanging the Emacs version (20.5), as necessary. Once gunzip hasfinished doing its job, a file by the name of "emacs-20.5.tar" shouldbe in your build directory.@item @file{tar}, the "tape archiving" program, which moves multiple filesinto and out of archive files, or "tarfiles." All of the filescomprising the Emacs source come in a single tarfile, and must beextracted using @file{tar} before you can build Emacs. Typically, theextraction command would look like@exampletar -xvvf emacs-20.5.tar@end exampleThe @samp{x} indicates that we want to extract files from this tarfile,the two @samp{v}s force verbose output, and the @samp{f} tells@file{tar} to use a disk file, rather than one on tape.If you're using GNU @file{tar} (available at mirrors of@file{ftp.gnu.org}), you can combine this step and the previous one byusing the command@exampletar -zxvvf emacs-20.5.tar.gz@end exampleThe additional @samp{z} at the beginning of the options list tells GNU tarto uncompress the file with gunzip before extracting the tarfile'scomponents.@end itemizeAt this point, the Emacs sources (all 25+ megabytes of them) should besitting in a directory called @file{emacs-20.5}. On most common Unix andUnix-like systems, you should be able to compile Emacs (with X Windowssupport) with the following commands:@examplecd emacs-20.5 # change directory to emacs-20.5./configure # configure Emacs for your particular system make # use Makefile to build components, then Emacs @end exampleIf the @code{make} completes successfully, the odds are fairly good thatthe build has gone well. (@pxref{Problems building Emacs} if you weren'tsuccessful.)By default, Emacs is installed in the following directories:@table @file@item /usr/local/binbinaries@item /usr/local/share/emacs/20.xxLisp code and support files@item /usr/local/infoInfo documentation@end tableTo install files in those default directories, become the superuser andtype@examplemake install@end exampleNote that @code{make install} will overwrite @file{/usr/local/bin/emacs}and any Emacs Info files that might be in @file{/usr/local/info}.Much more verbose instructions (with many more hints and suggestions)come with the Emacs sources, in the file @file{INSTALL}.@node Updating Emacs, Problems building Emacs, Installing Emacs, Compiling and installing Emacs@section How do I update Emacs to the latest version?@cindex Updating Emacs@xref{Installing Emacs}, and follow the instructions there forinstallation.Most files are placed in version-specific directories. Emacs 20.5, forinstance, places files in @file{/usr/local/share/emacs/20.5}.Upgrading should overwrite only, @file{/usr/local/bin/emacs} (the Emacsbinary) and documentation in @file{/usr/local/info}. Back up thesefiles before you upgrade, and you shouldn't have too much trouble.@node Problems building Emacs, Linking with -lX11 fails, Updating Emacs, Compiling and installing Emacs@section What should I do if I have trouble building Emacs?@cindex Problems building Emacs@cindex Errors when building EmacsFirst look in the file @file{PROBLEMS} (in the top-level directory whenyou unpack the Emacs source) to see if there is already a solution foryour problem. Next, look for other questions in this FAQ that have todo with Emacs installation and compilation problems.If you'd like to have someone look at your problem and help solve it,@pxref{Help installing Emacs}.If you cannot find a solution in the documentation, send a message to@email{bug-gnu-emacs@@gnu.org}.Please do not post it to @uref{news:gnu.emacs.help} or send e-mail to@email{help-gnu-emacs@@gnu.org}. For further guidelines,@pxref{Guidelines for newsgroup postings} and @ref{Reporting bugs}.@node Linking with -lX11 fails, , Problems building Emacs, Compiling and installing Emacs@section Why does linking Emacs with -lX11 fail?@cindex Linking with -lX11 fails@cindex lX11, linking fails withEmacs needs to be linked with the static version of the X11 library,@file{libX11.a}. This may be missing.Under OpenWindows, you may need to use "add_services" to add the"OpenWindows Programmers" optional software category from the CD-ROM.Under HP-UX 8.0, you may need to run "update" again to load the X11-PRG"fileset". This may be missing even if you specified "all filesets" thefirst time. If @file{libcurses.a} is missing, you may need to load the"Berkeley Development Option."@email{zoo@@armadillo.com, David Zuhn} says that MIT X builds sharedlibraries by default, and only shared libraries, on those platforms thatsupport them. These shared libraries can't be used when undumpingtemacs (the last stage of the Emacs build process). To get regularlibraries in addition to shared libraries, add this to @file{site.cf}:@example#define ForceNormalLib YES@end exampleOther systems may have similar problems. You can always defineCANNOT_DUMP and link with the shared libraries instead.To get the Xmenu stuff to work, you need to find a copy of MIT's@file{liboldX.a}.@c ------------------------------------------------------------@node Finding Emacs and related packages, Major packages and programs, Compiling and installing Emacs, Top@chapter Finding Emacs and related packages@cindex Finding Emacs and related packages@menu* Finding Emacs on the Internet:: * Finding a package with particular functionality:: * Packages that do not come with Emacs:: * Submitting to the Emacs Lisp Archive:: * Current GNU distributions:: * Difference between Emacs and XEmacs:: * Emacs for MS-DOS:: * Emacs for Windows:: * Emacs for OS/2:: * Emacs for Atari ST:: * Emacs for the Amiga :: * Emacs for NeXTSTEP:: * Emacs for Apple computers:: * Emacs for VMS and DECwindows:: * Modes for various languages:: * Translating names to IP addresses:: @end menu@node Finding Emacs on the Internet, Finding a package with particular functionality, Finding Emacs and related packages, Finding Emacs and related packages@section Where can I get Emacs on the net (or by snail mail)?@cindex Finding Emacs on the Internet@cindex Snail mail, ordering Emacs via@cindex Postal service, ordering Emacs via@cindex Distribution, retrieving Emacs @cindex Internet, retreiving fromLook in the files @file{etc/DISTRIB} and @file{etc/FTP} for informationon nearby archive sites and @file{etc/ORDERS} for mail orders. If youdon't already have Emacs, @pxref{Informational files for Emacs} for howto get these files.@xref{Installing Emacs}, for information on how to obtain and build the latestversion of Emacs, and @pxref{Current GNU distributions} for a list ofarchive sites that make GNU software available.@node Finding a package with particular functionality, Packages that do not come with Emacs, Finding Emacs on the Internet, Finding Emacs and related packages@section How do I find a Emacs Lisp package that does XXX?@cindex Package, finding@cindex Finding an Emacs Lisp package@cindex Functionality, finding a particular package First of all, you should check to make sure that the package isn'talready available. For example, typing @kbd{M-x apropos @key{RET}wordstar @key{RET}} lists all functions and variables containing thestring @samp{wordstar}.It is also possible that the package is on your system, but has not beenloaded. To see which packages are available for loading, look throughyour computer's lisp directory (@pxref{Filename conventions}). The Lispsource to most most packages contains a short description of how theyshould be loaded, invoked, and configured --- so before you use ormodify a Lisp package, see if the author has provided any hints in thesource code.If a package does not come with Emacs, check the Lisp Code Directory.The LCD was originally maintained by @email{brennan@@hal.com, DaveBrennan}, but was recently taken over by @email{toby@@world.std.com,toby knudsen}, who maintains @uref{http://www.emacs.org}. The LCD iscurrently being reorganized and updated, but you can meanwhile find manypackages at @uref{ftp://ftp.emacs.org/pub}.For now, you can search through the LCD with @file{lispdir.el}, which isin the process of being updated. Download it from the LCD, in the@file{emacs-lisp-attic/misc} directory, and then evaluate the followingLisp form (@pxref{Evaluating Emacs Lisp code}):@lisp(setq lisp-code-directory "/anonymous@@ftp.emacs.org:pub/emacs-lisp-attic/emacs-lisp/LCD-datafile.gz" elisp-archive-host "ftp.emacs.org" elisp-archive-directory "/pub/emacs-lisp-attic/emacs-lisp/")@end lispOnce you have installed @file{lispdir.el}, you can use @kbd{M-xlisp-dir-apropos} to search the listing. For example, @kbd{M-xlisp-dir-apropos @key{RET} ange-ftp @key{RET}} produces this output:@example GNU Emacs Lisp Code Directory Apropos --- "ange-ftp""~/" refers to archive.cis.ohio-state.edu:pub/elisp-archive/ ange-ftp (4.18) 15-Jul-1992 Andy Norman, <ange@@hplb.hpl.hp.com> ~/packages/ange-ftp.tar.Z transparent FTP Support for GNU Emacs auto-save (1.19) 01-May-1992 Sebastian Kremer, <sk@@thp.uni-koeln.de> ~/misc/auto-save.el.Z Safer autosaving with support for ange-ftp and /tmp ftp-quik (1.0) 28-Jul-1993 Terrence Brannon, <tb06@@pl122f.eecs.lehigh.edu> ~/modes/ftp-quik.el.Z Quik access to dired'ing of ange-ftp and normal paths@end example@node Packages that do not come with Emacs, Submitting to the Emacs Lisp Archive, Finding a package with particular functionality, Finding Emacs and related packages@section Where can I get Emacs Lisp packages that don't come with Emacs?@cindex Unbundled packages@cindex Finding other packages@cindex Lisp packages that do not come with Emacs@cindex Packages, those that do not come with Emacs@cindex Emacs Lisp Archive, description of@cindex Archive, description of the Emacs LispFirst, check the Lisp Code Directory to find the name of the package youare looking for (@pxref{Finding a package with particularfunctionality}). Next, check local archives and the Emacs Lisp Archiveto find a copy of the relevant files. If you still haven't found it,you can send e-mail to the author asking for a copy. If you find EmacsLisp code that doesn't appear in the LCD, please submit a copy to theLCD (@pxref{Submitting to the Emacs Lisp Archive}).You can access the Emacs Lisp Archive at@uref{ftp://archive.cis.ohio-state.edu/pub/emacs-lisp/}Retrieve and read the file @file{README} first.@itemize @bullet@item The archive maintainers do not have time to answer individualrequests for packages or the list of packages in the archive. If youcannot use FTP or UUCP to access the archive yourself, try to find afriend who can, but please don't ask the maintainers.@item Any files with names ending in @samp{.Z}, @samp{.z}, or @samp{.gz} arecompressed, so you should use "binary" mode in FTP to retrieve them.You should also use binary mode whenever you retrieve any files withnames ending in @samp{.elc}.@end itemize@node Submitting to the Emacs Lisp Archive, Current GNU distributions, Packages that do not come with Emacs, Finding Emacs and related packages@section How do I submit code to the Emacs Lisp Archive?@cindex Submitting code to the Emacs Lisp Archive@cindex Emacs Lisp Archive, submissions to@cindex Lisp Archive, submissions to@cindex Archive, submitting to the Emacs LispGuidelines and procedures for submission to the archive can be found inthe file @file{GUIDELINES} in the archive directory (@ref{Packages thatdo not come with Emacs}). It covers documentation, copyrights,packaging, submission, and the Lisp Code Directory Record. AnonymousFTP uploads are not permitted. Instead, all submissions are mailed to@email{elisp-archive@@cis.ohio-state.edu}. The @file{lispdir.el}package has a function named @code{submit-lcd-entry} which will help youwith this.@node Current GNU distributions, Difference between Emacs and XEmacs, Submitting to the Emacs Lisp Archive, Finding Emacs and related packages@section Where can I get other up-to-date GNU stuff?@cindex Current GNU distributions@cindex Sources for current GNU distributions@cindex Stuff, current GNU@cindex Up-to-date GNU stuff@cindex Finding current GNU software@cindex Official GNU software sitesThe most up-to-date official GNU software is normally kept at@uref{ftp://ftp.gnu.org/pub/gnu}Read the files @file{etc/DISTRIB} and @file{etc/FTP} for moreinformation.A list of sites mirroring @samp{ftp.gnu.org} can be found at@uref{http://www.gnu.org/order/ftp.html}@node Difference between Emacs and XEmacs, Emacs for MS-DOS, Current GNU distributions, Finding Emacs and related packages@section What is the difference between Emacs and XEmacs (formerly "Lucid Emacs")?@cindex XEmacs@cindex Difference Emacs and XEmacs@cindex Lucid Emacs@cindex EpochFirst of all, they're both GNU Emacs. XEmacs is just as much a laterversion of GNU Emacs as the FSF-distributed version. This FAQ refers tothe latest version to be distributed by the FSF as "Emacs," partlybecause the XEmacs maintainers now refer to their product using the"XEmacs" name, and partly because there isn't any accurate way todifferentiate between the two without getting mired in paragraphs oflegalese and history.XEmacs, which began life as Lucid Emacs, is based on an early version ofEmacs 19 and Epoch, an X-aware version of Emacs 18.Emacs (i.e., the version distributed by the FSF) has a larger installedbase and now always contains the MULE multilingual facilities.XEmacs can do some clever tricks with X Windows, such asputting arbitrary graphics in a buffer. Similar facilities have beenimplemented for Emacs as part of a new redisplay implementation forEmacs 21, expected to be released after Emacs 20.5.Emacs and XEmacs each come withLisp packages that are lacking in the other; RMS says that the FSF wouldinclude more packages that come with XEmacs, but that the XEmacsmaintainers don't always keep track of the authors of contributed code,which makes it impossible for the FSF to have certain legal paperssigned. (Without these legal papers, the FSF will not distribute Lisppackages with Emacs.) The two versions have somesignificant differences at the Lisp programming level.Many XEmacs features have found their way into recent versions of Emacs,and more features can be expected in the future, but there are still manydifferences between the two.@node Emacs for MS-DOS, Emacs for Windows, Difference between Emacs and XEmacs, Finding Emacs and related packages@section Where can I get Emacs for my PC running MS-DOS?@cindex MS-DOS, Emacs for@cindex DOS, Emacs for@cindex Compiling Emacs for DOS@cindex Emacs for MS-DOS@cindex Tools needed to compile Emacs under DOSA pre-built binary distribution of Emacs is available from the Simtelarchives. This version apparently works under MS-DOS and Windows (3.x,95x, and NT) and supports long file names under Windows 9x. Moreinformation is available from@uref{ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2gnu/emacs.README}The binary itself is available in the files em1934*.zip in thedirectory@uref{ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2gnu/}If you prefer to compile Emacs for yourself, you can do so with thecurrent distribution directly. You will need a 386 (orbetter) processor, and to be running MS-DOS 3.0 or later. According to@email{eliz@@is.elta.co.il, Eli Zaretskii} and@email{hankedr@@dms.auburn.edu, Darrel Hankerson}, you will need thefollowing:@table @emph@item Compilerdjgpp version 1.12 maint 1 or later. Djgpp 2.0 or later isrecommended, since 1.x is being phased out. Djgpp 2 supportslong filenames under Windows 9x.You can get the latest release of djgpp by retrieving all ofthe files in@uref{ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp}@item Gunzip and tarThe easiest way is to use "djtar" which comes with djgpp v2.x,because it can open gzip'ed tarfiles (i.e., those ending with".tar.gz") in one step. Djtar comes in "djdev201.zip", fromthe URL mentioned above.@item make, mv, sed, and rmAll of these utilities are available at@uref{ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2gnu}16-bit utilities can be found in GNUish, at@uref{ftp://ftp.simtel.net/pub/simtelnet/gnu/gnuish}@end tableThe files @file{INSTALL} and @file{PROBLEMS} in the top-level directoryof the Emacs source contains some additional information regarding Emacsunder MS-DOS.For a list of other MS-DOS implementations of Emacs (and Emacslook-alikes), consult the list of "Emacs implementations and literature,"available at@uref{ftp://rtfm.mit.edu/pub/usenet/comp.emacs/}Note that while many of these programs look similar to Emacs, they oftenlack certain features, such as the Emacs Lisp extension language.@node Emacs for Windows, Emacs for OS/2, Emacs for MS-DOS, Finding Emacs and related packages@section Where can I get Emacs for Microsoft Windows@cindex FAQ for NT Emacs@cindex Microsoft Windows, Emacs for@cindex Windows NT, Emacs for@cindex Windows '95 and '98, Emacs forFor information on Emacs for Windows 95 and NT, read the FAQ produced by@email{voelker@@cs.washington.edu, Geoff Voelker}, available at@uref{http://www.gnu.org/software/emacs/windows/ntemacs.html}@xref{Emacs for MS-DOS}, for Windows 3.1.@node Emacs for OS/2, Emacs for Atari ST, Emacs for Windows, Finding Emacs and related packages@section Where can I get Emacs for my PC running OS/2?@cindex OS/2, Emacs forEmacs 19.33 is ported for emx on OS/2 2.0 or 2.1, and is available at@uref{ftp://hobbes.nmsu.edu/pub/os2/apps/editors/emacs/v19.33/}@node Emacs for Atari ST, Emacs for the Amiga , Emacs for OS/2, Finding Emacs and related packages@section Where can I get Emacs for my Atari ST?@cindex Atari ST, Emacs for@cindex TOS, Emacs forRoland Sch�uble reports that Emacs 18.58 running on plain TOS and MiNTis available at@uref{ftp://atari.archive.umich.edu/Editors/Emacs-18-58/1858b-d3.zoo}.@node Emacs for the Amiga , Emacs for NeXTSTEP, Emacs for Atari ST, Finding Emacs and related packages@section Where can I get Emacs for my Amiga?@cindex Amiga, Emacs forThe files you need are available at@uref{ftp://ftp.wustl.edu/pub/aminet/util/gnu/}@email{dgilbert@@gamiga.guelphnet.dweomer.org, David Gilbert} has released abeta version of Emacs 19.25 for the Amiga. You can get the binary at@uref{ftp://ftp.wustl.edu/pub/aminet/util/gnu/a2.0bEmacs-bin.lha}@node Emacs for NeXTSTEP, Emacs for Apple computers, Emacs for the Amiga , Finding Emacs and related packages@section Where can I get Emacs for NeXTSTEP?@cindex NeXTSTEP, Emacs forEmacs.app is a NeXTSTEP version of Emacs 19.34 which supports colors,menus, and multiple frames. You can get it from@uref{ftp://next-ftp.peak.org/pub/next/apps/emacs/Emacs_for_NeXTstep.4.20a1.NIHS.b.tar.gz}@node Emacs for Apple computers, Emacs for VMS and DECwindows, Emacs for NeXTSTEP, Finding Emacs and related packages@section Where can I get Emacs for my Apple computer?@cindex Apple computers, Emacs forAn unofficial port of GNU Emacs 18.59 to the Macintosh is available at anumber of ftp sites, the home being@uref{ftp://ftp.cs.cornell.edu/pub/parmet/Emacs-1.17.sit.bin}.A port of Emacs 20.4 is available at@uref{http://www.cs.hku.hk/~choi/emacs/index.html}.Apple's forthcoming "OS X" is based largely on NeXTSTEP and OpenStep.@xref{Emacs for NeXTSTEP}, for more details about that version.@node Emacs for VMS and DECwindows, Modes for various languages, Emacs for Apple computers, Finding Emacs and related packages@section Where do I get Emacs that runs on VMS under DECwindows?@cindex DECwindows, Emacs for@cindex VMS, Emacs forUp-to-date information about GNU software (including Emacs) for VMS isavailable at @uref{http://vms.gnu.org/}.@node Modes for various languages, Translating names to IP addresses, Emacs for VMS and DECwindows, Finding Emacs and related packages@section Where can I get modes for Lex, Yacc/Bison, Bourne shell, csh, C++, Objective-C, Pascal, Java, and Awk?@cindex Awk, mode for@cindex @code{awk-mode}@cindex Bison, mode for@cindex Bourne Shell, mode for@cindex C++, mode for@cindex Java, mode for@cindex Lex mode@cindex Objective-C, mode for@cindex @code{pascal-mode}@cindex Shell mode@cindex Yacc mode@cindex @file{csh} mode@cindex @code{sh-mode}@cindex @code{cc-mode}Most of these modes are now available in standard Emacs distribution.To get additional modes, look in the Lisp Code Directory (@pxref{Findinga package with particular functionality}). For C++, if you use@code{lisp-dir-apropos}, you must specify the pattern with somethinglike @kbd{M-x lisp-dir-apropos @key{RET} c\+\+ @key{RET}}.Barry Warsaw's @code{cc-mode} now works for C, C++, Objective-C, andJava code. You can get the latest version from the Emacs Lisp Archive;@pxref{Packages that do not come with Emacs} for details. A FAQ for@code{cc-mode} is available at@uref{http://www.python.org/emacs/cc-mode/}.@node Translating names to IP addresses, , Modes for various languages, Finding Emacs and related packages@section What is the IP address of XXX.YYY.ZZZ?@cindex Translating names to IP addresses@cindex IP addresses from names@cindex Using BIND to translate addresses@cindex DNS and IP addressesIf you are on a Unix machine, try using the @samp{nslookup} command,included in the Berkeley BIND package. For example, to find the IPaddress of @samp{ftp.gnu.org}, you would type @code{nslookupftp.gnu.org}.Your computer should then provide the IP address of that computer.If your site's nameserver is deficient, you can use IP addresses to FTPfiles. You can get this information by* E-mail:@exampleTo: dns@@[134.214.84.25] (to grasp.insa-lyon.fr)Body: ip XXX.YYY.ZZZ (or "help" for more information and options - no quotes) @end exampleor:@exampleTo: resolve@@[147.31.254.130] (to laverne.cs.widener.edu)Body: site XXX.YYY.ZZZ@end example@c ------------------------------------------------------------@node Major packages and programs, Key bindings, Finding Emacs and related packages, Top@chapter Major packages and programs@cindex Major packages and programs@menu* VM:: * Supercite:: * Calc:: * VIPER:: * AUC-TeX:: * BBDB:: * Ispell:: * w3-mode:: * EDB:: * Mailcrypt:: * JDE:: * Patch:: @end menu@node VM, Supercite, Major packages and programs, Major packages and programs@section VM (View Mail) --- another mail reader within Emacs, with MIME support@cindex VM@cindex Alternative mail software@cindex View Mail@cindex E-mail reader, VM@table @b@item Author@email{kyle@@uunet.uu.net, Kyle Jones}@item Latest version6.72@item Distribution@uref{ftp://ftp.wonderworks.com/pub/vm/vm.tar.gz}@item Informational newsgroup/mailing list@uref{news:gnu.emacs.vm.info}@*Subscription requests to @email{info-vm-request@@uunet.uu.net}@*Submissions to @email{info-vm@@uunet.uu.net}@item Bug reports newsgroup/mailing list@uref{news:gnu.emacs.vm.bug}@*Subscription requests to @email{bug-vm-request@@uunet.uu.net}@*Submissions to @email{bug-vm@@uunet.uu.net}@end tableVM 6 works with Emacs 20.4, and may cause problems with Emacs 20.3 andbelow. (Note that many people seem to use Emacs 20.3 with VM 6, withoutany problems.) Risk-averse users might wish to try VM 5.97, availablefrom @uref{ftp://ftp.wonderworks.com/pub/vm/, the same FTP site}.@node Supercite, Calc, VM, Major packages and programs@section Supercite --- mail and news citation package within Emacs@cindex Supercite@cindex Superyank@cindex Mail and news citations@cindex News and mail citations@cindex Citations in mail and news@table @b@item Author@email{bwarsaw@@cen.com, Barry Warsaw}@item Latest version3.1 (comes with Emacs 20)@item Distribution@uref{http://www.python.org/emacs/supercite.tar.gz}@item Mailing listSubscription requests to @email{supercite-request@@python.org}@*Submissions @email{supercite@@python.org}@end tableSuperyank is an old version of Supercite.@node Calc, VIPER, Supercite, Major packages and programs@section Calc --- poor man's Mathematica within Emacs@cindex Programmable calculator@cindex Calc@table @b@item Author@email{daveg@@csvax.cs.caltech.edu, Dave Gillespie}@item Latest version2.02f@item Distribution@uref{ftp://ftp.gnu.org/pub/gnu/calc/calc-2.02f.tar.gz}@end table@node VIPER, AUC-TeX, Calc, Major packages and programs@section VIPER --- vi emulation for Emacs@cindex vi emulation@cindex VIPER@cindex Emulation of viSince Emacs 19.29, the preferred vi emulation in Emacs is VIPER(@kbd{M-x viper-mode @key{RET}}), which comes with Emacs. It extendsand supersedes VIP (including VIP 4.3) and provides vi emulation atseveral levels, from one that closely follows vi to one that departsfrom vi in several significant ways.For Emacs 19.28 and earlier, the following version of VIP is generallybetter than the one distributed with Emacs:@table @b@item Author@email{sane@@cs.uiuc.edu, Aamod Sane}@item Latest version4.3@item Distribution@uref{ftp://archive.cis.ohio-state.edu/pub/emacs-lisp/modes/vip-mode.tar.Z}@end table@node AUC-TeX, BBDB, VIPER, Major packages and programs@section AUC TeX --- enhanced LaTeX mode with debugging facilities@cindex Mode for @TeX{}@cindex @TeX{} mode@cindex AUC-TeX mode for editing @TeX{}@cindex Writing and debugging @TeX{}@table @b@item Authors@email{krab@@iesd.auc.dk, Kresten Krab Thorup} and@*@email{abraham@@iesd.auc.dk, Per Abrahamsen}@item Latest version9.9p@item Distribution@uref{ftp://sunsite.auc.dk/packages/auctex/auctex.tar.gz}@item Web site@uref{http://sunsite.auc.dk/auctex/}@item Mailing list:Subscription requests to @email{auc-tex-request@@iesd.auc.dk}@*Submissions to @email{auc-tex@@iesd.auc.dk}@*Development team is at @email{auc-tex_mgr@@iesd.auc.dk}@end table@node BBDB, Ispell, AUC-TeX, Major packages and programs@section BBDB --- personal Info Rolodex integrated with mail/news readers@cindex BBDB@cindex Rolodex-like functionality@cindex Integrated contact database@cindex Contact database@cindex Big Brother Database@cindex Address book@table @b@item Maintainer@email{simmonmt@@acm.org, Matt Simmons}@item Latest version2.00@item Distribution@uref{http://www.netcom.com/~simmonmt/bbdb/index.html}@item Mailing listsSubscription requests to @email{info-bbdb-request@@xemacs.org}@*Submissions to @email{info-bbdb@@xemacs.org}@*Release announcements: @email{bbdb-announce-request@@xemacs.org}@end table@node Ispell, w3-mode, BBDB, Major packages and programs@section Ispell --- spell checker in C with interface for Emacs@cindex Spell-checker@cindex Checking spelling@cindex Ispell@table @b@item Author@email{geoff@@itcorp.com, Geoff Kuenning}@item Latest version3.1.20@item Distribution@uref{ftp://ftp.cs.ucla.edu/pub/ispell/ispell-3.1.20.tar.gz}@*@item Web site@uref{http://fmg-www.cs.ucla.edu/geoff/ispell.html}@end table@itemize @bullet@item Do not ask Geoff to send you the latest version of Ispell. He does not have free e-mail.@item This Ispell program is distinct from GNU Ispell 4.0. GNU Ispell4.0 is no longer a supported product.@end itemize@node w3-mode, EDB, Ispell, Major packages and programs@section w3-mode --- A World Wide Web browser inside of Emacs@cindex WWW browser@cindex Web browser@cindex Browser in Emacs@cindex @code{w3-mode}@table @b@item Author@email{wmperry@@spry.com, Bill Perry}@item Latest version4.0pre.39@item Distribution@uref{ftp://ftp.cs.indiana.edu/pub/elisp/w3/w3.tar.gz}@item Mailing listsReceive announcements from @email{w3-announce-request@@indiana.edu}@*Become a beta tester at @email{w3-beta-request@@indiana.edu}@*Help to develop @code{w3-mode} at @email{w3-dev@@indiana.edu}@end table@node EDB, Mailcrypt, w3-mode, Major packages and programs@section EDB --- Database program for Emacs; replaces forms editing modes@cindex EDB@cindex Database@cindex Forms mode@table @b@item Author@email{mernst@@theory.lcs.mit.edu, Michael Ernst}@item Latest version1.21@item Distribution@uref{ftp://theory.lcs.mit.edu/pub/emacs/edb}@end table@node Mailcrypt, JDE, EDB, Major packages and programs@section Mailcrypt --- PGP interface within Emacs mail and news@cindex PGP@cindex GPG@cindex Interface to PGP from Emacs mail and news@cindex News, interface to PGP from@cindex Mail, interface to PGP from@cindex Encryption software, interface to@table @b@item Authors@email{patl@@lcs.mit.edu, Patrick J. LoPresti} and @email{jin@@atype.com, Jin S. Choi}@item Maintainer@email{lbudney@@pobox.com, Len Budney}@item Latest version3.5.3@item Distribution@uref{http://www.nb.net/~lbudney/linux/software/mailcrypt/mailcrypt-3.5.3.tar.gz}@item Web site@uref{http://www.nb.net/~lbudney/linux/software/mailcrypt.html}@end table@node JDE, Patch, Mailcrypt, Major packages and programs@section JDE --- Integrated development environment for Java@cindex Java development environment@cindex Integrated Java development environment@cindex JDE@table @b@item Author@email{paulk@@mathworks.com, Paul Kinnucan}@item Mailing listjde-subscribe@@sunsite.auc.dk@item Latest version2.1.1@item Web site@uref{http://sunsite.auc.dk/jde/}@end table@node Patch, , JDE, Major packages and programs@section Patch --- program to apply "diffs" for updating files@cindex Updating files with diffs@cindex Patching source files with diffs@cindex Diffs and patching@cindex @file{patch}@table @b@item Author@email{lwall@@wall.org, Larry Wall} (with GNU modifications)@item Latest version2.5@item Distribution@xref{Current GNU distributions}.@end table@c ------------------------------------------------------------@node Key bindings, Alternate character sets, Major packages and programs, Top@chapter Key bindings@cindex Key bindings@menu* Binding keys to commands:: * Invalid prefix characters:: * Terminal setup code works after Emacs has begun:: * Using function keys under X:: * Working with function and arrow keys:: * X key translations for Emacs:: * Handling C-s and C-q with flow control:: * Binding C-s and C-q:: * Backspace invokes help:: * stty and Backspace key:: * Swapping keys:: * Producing C-XXX with the keyboard:: * No Meta key:: * No Escape key:: * Compose Character:: * Binding combinations of modifiers and function keys:: * Meta key does not work in xterm:: * ExtendChar key does not work as Meta:: @end menu@node Binding keys to commands, Invalid prefix characters, Key bindings, Key bindings@section How do I bind keys (including function keys) to commands?@cindex Binding keys to commands@cindex Keys, binding to commands@cindex Commands, binding keys toKeys can be bound to commands either interactively or in your@file{.emacs} file. To interactively bind keys for all modes, type@kbd{M-x global-set-key @key{RET} KEY CMD @key{RET}}.To bind a key just in the current major mode, type @kbd{M-x local-set-key @key{RET} KEY CMD @key{RET}}.See @inforef{Key Bindings, Key Bindings, emacs} for further details.To bind keys on starting Emacs or on starting any given mode, use thefollowing "trick": First bind the key interactively, then immediatelytype @kbd{C-x @key{ESC} @key{ESC} C-a C-k C-g}. Now, the command neededto bind the key is in the kill ring, and can be yanked into your@file{.emacs} file. If the key binding is global, no changes to thecommand are required. For example,@lisp(global-set-key (quote [f1]) (quote help-for-help))@end lispcan be placed directly into the @file{.emacs} file. If the key binding islocal, the command is used in conjunction with the "add-hook" command.For example, in tex-mode, a local binding might be@lisp(add-hook 'tex-mode-hook (lambda () (local-set-key (quote [f1]) (quote help-for-help))))@end lisp@itemize @bullet@item Control characters in key sequences, in the form yanked from thekill ring are given in their graphic form --- i.e., @key{CTRL} is shownas @samp{^}, @key{TAB} as a set of spaces (usually 8), etc. You maywant to convert these into their vector or string forms.@item If a prefix key of the character sequence to be bound is alreadybound as a complete key, then you must unbind it before the newbinding. For example, if "ESC @{" is previously bound:@lisp(global-unset-key [?\e ?@{]) ;; or(local-unset-key [?\e ?@{])@end lisp@item Aside from commands and "lambda lists," a vector or string alsocan be bound to a key and thus treated as a macro. For example:@lisp(global-set-key [f10] [?\C-x?\e?\e?\C-a?\C-k?\C-g]) ;; or(global-set-key [f10] "\C-x\e\e\C-a\C-k\C-g")@end lisp@end itemize@node Invalid prefix characters, Terminal setup code works after Emacs has begun, Binding keys to commands, Key bindings@section Why does Emacs say "Key sequence XXX uses invalid prefix characters"?@cindex Prefix characters, invalid@cindex Invalid prefix characters@cindex Misspecified key sequencesUsually, one of two things has happened. In one case, the controlcharacter in the key sequence has been misspecified (e.g. @samp{C-f}used instead of @samp{\C-f} within a Lisp expression). In the othercase, a "prefix key" in the keystroke sequence you were trying to bindwas already bound as a "complete key." Historically, the @samp{ESC [}prefix was usually the problem, in which case you should evaluate eitherof these forms before attempting to bind the key sequence:@lisp(global-unset-key [?\e ?[]) ;; or(global-unset-key "\e[")@end lisp@node Terminal setup code works after Emacs has begun, Using function keys under X, Invalid prefix characters, Key bindings@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?@cindex Terminal setup code in @file{.emacs}During startup, Emacs initializes itself according to a given code/fileorder. If some of the code executed in your @file{.emacs} file needs tobe postponed until the initial terminal or window-system setup code hasbeen executed but is not, then you will experience this problem (thiscode/file execution order is not enforced after startup).To postpone the execution of Emacs Lisp code until after terminal orwindow-system setup, treat the code as a "lambda list" and set the valueof either the @code{term-setup-hook} or @code{window-setup-hook}variable to this "lambda function." For example,@lisp(add-hook 'term-setup-hook (lambda () (when (string-match "\\`vt220" (or (getenv "TERM") "")) ;; Make vt220's "Do" key behave like M-x: (global-set-key [do] 'execute-extended-command))))@end lispFor information on what Emacs does every time it is started, see the@file{lisp/startup.el} file.@node Using function keys under X, Working with function and arrow keys, Terminal setup code works after Emacs has begun, Key bindings@section How do I use function keys under X Windows?@cindex Function keys@cindex X Windows and function keys@cindex Binding function keysWith Emacs 19, functions keys under X are bound like any other key. @xref{Binding keys to commands}, for details.@node Working with function and arrow keys, X key translations for Emacs, Using function keys under X, Key bindings@section How do I tell what characters or symbols my function or arrow keys emit?@cindex Working with arrow keys@cindex Arrow keys, symbols generated by@cindex Working with function keys@cindex Function keys, symbols generated by@cindex Symbols generated by function keysType @kbd{C-h c} then the function or arrow keys. The command willreturn either a function key symbol or character sequence (see theEmacs on-line documentation for an explanation). This works for otherkeys as well.@node X key translations for Emacs, Handling C-s and C-q with flow control, Working with function and arrow keys, Key bindings@section How do I set the X key "translations" for Emacs?@cindex X key translations@cindex Key translations under X@cindex Translations for keys under XEmacs is not written using the Xt library by default, so there are no"translations" to be set. (We aren't sure how to set such translationsif you do build Emacs with Xt; please let us know if you've done this!)The only way to affect the behavior of keys within Emacs is through"xmodmap" (outside Emacs) or @code{define-key} (inside Emacs). The@code{define-key} command should be used in conjunction with the@code{function-key-map} map. For instance,@lisp(define-key function-key-map [M-@key{TAB}] [?\M-\t])@end lispdefines the @kbd{M-@key{TAB}} key sequence.@node Handling C-s and C-q with flow control, Binding C-s and C-q, X key translations for Emacs, Key bindings@section How do I handle @kbd{C-s} and @kbd{C-q} being used for flow control?@cindex Flow control, @kbd{C-s} and @kbd{C-q} with@cindex @kbd{C-s} and @kbd{C-q} with flow control@kbd{C-s} and @kbd{C-q} are used in the XON/XOFF flow control protocol.This messes things up when you're using Emacs, because Emacs binds thesekeys to commands by default. Because Emacs won't honor them as flowcontrol characters, too many of these characters are not passed on andoverwhelm output buffers. Sometimes, intermediate software usingXON/XOFF flow control will prevent Emacs from ever seeing @kbd{C-s} and@kbd{C-q}.Possible solutions:@itemize @bullet@item Disable the use of @kbd{C-s} and @kbd{C-q} for flow control.You need to determine the cause of the flow control.@itemize @minus@item your terminalYour terminal may use XON/XOFF flow control to have time to displayall the characters it receives. For example, VT series terminals dothis. It may be possible to turn this off from a setup menu. Forexample, on a VT220 you may select "No XOFF" in the setup menu. Thisis also true for some terminal emulation programs on PCs.When you turn off flow control at the terminal, you will also need toturn it off at the other end, which might be at the computer you arelogged in to or at some terminal server in between.If you turn off flow control, characters may be lost; using a printerconnected to the terminal may fail. You may be able to get aroundthis problem by modifying the "termcap" entry for your terminal toinclude extra NUL padding characters.@item a modemIf you are using a dialup connection, the modems may be usingXON/XOFF flow control. It's not clear how to get around this.@item a router or terminal serverSome network box between the terminal and your computer may be usingXON/XOFF flow control. It may be possible to make it use some otherkind of flow control. You will probably have to ask your localnetwork experts for help with this.@item tty and/or pty devicesIf your connection to Emacs goes through multiple tty and/or ptydevices, they may be using XON/XOFF flow control even when it is notnecessary.@email{eirik@@theory.tn.cornell.edu, Eirik Fuller} writes:@quotationSome versions of "rlogin" (and possibly telnet) do not pass flowcontrol characters to the remote system to which they connect. Onsuch systems, Emacs on the remote system cannot disable flowcontrol on the local system. Sometimes "rlogin -8" will avoid thisproblem.One way to cure this is to disable flow control on the local host(the one running rlogin, not the one running rlogind) using thestty command, before starting the rlogin process. On many systems,@samp{stty start u stop u} will do this.Some versions of @samp{tcsh} will prevent even this from working. Oneway around this is to start another shell before starting rlogin,and issue the @samp{stty} command to disable flow control from that shell.@end quotationUse @samp{stty -ixon} instead of @samp{stty start u stop u} on some systems.@end itemize@item Make Emacs speak the XON/XOFF flow control protocol.You can make Emacs treat @kbd{C-s} and @kbd{C-q} as flow control characters byevaluating the form@lisp(enable-flow-control)@end lispto unconditionally enable flow control or@lisp(enable-flow-control-on "vt100" "h19")@end lisp(using your terminal names instead of @samp{vt100} or @samp{h19}) toenable selectively. These commands will automatically swap @kbd{C-s}and @kbd{C-q} to @kbd{C-\} and @kbd{C-^}. Variables can be used tochange the default swap keys (@code{flow-control-c-s-replacement} and@code{flow-control-c-q-replacement}).If you are fixing this for yourself, simply put the form in your@file{.emacs} file. If you are fixing this for your entire site, thebest place to put it is in the @file{lisp/site-start.el} file. Puttingthis form in @file{lisp/default.el} has the problem that if the user's@file{.emacs} file has an error, this will prevent@file{lisp/default.el} from being loaded and Emacs may be unusable forthe user, even for correcting their @file{.emacs} file (unless they'resmart enough to move it to another name).@end itemizeFor further discussion of this issue, read the file @file{PROBLEMS} (inthe top-level directory when you unpack the Emacs source).@node Binding C-s and C-q, Backspace invokes help, Handling C-s and C-q with flow control, Key bindings@section How do I bind @kbd{C-s} and @kbd{C-q} (or any key) if these keys are filtered out?@cindex Binding @kbd{C-s} and @kbd{C-q}@cindex @kbd{C-s} and @kbd{C-q}, bindingTo bind @kbd{C-s} and @kbd{C-q}, use either @code{enable-flow-control}or @sc{enable-flow-control-on}. @xref{Handling C-s and C-q with flowcontrol}, for usage and implementation details.To bind other keys, use @code{keyboard-translate}. @xref{Swapping keys},for usage details. To do this for an entire site, you should swap thekeys in @file{lisp/site-start.el}. @xref{Handling C-s and C-q with flowcontrol}, for an explanation of why @file{lisp/default.el} should not beused.@itemize @bullet@item If you do this for an entire site, the users will be confused bythe disparity between what the documentation says and how Emacsactually behaves.@end itemize@node Backspace invokes help, stty and Backspace key, Binding C-s and C-q, Key bindings@section Why does the @key{Backspace} key invoke help?@cindex Backspace key invokes help@cindex Help invoked by BackspaceThe @key{Backspace} key (on most keyboards) generates ASCII code 8.@kbd{C-h} sends the same code. In Emacs by default @kbd{C-h} invokeshelp-command. This is intended to be easy to remember since the firstletter of @samp{help} is @samp{h}. The easiest solution to this problemis to use @kbd{C-h} (and @key{Backspace}) for help and @key{DEL} (the@key{Delete} key) for deleting the previous character.For many people this solution may be problematic:@itemize @bullet@itemThey normally use @key{Backspace} outside of Emacs for deleting theprevious character. This can be solved by making @key{DEL} the commandfor deleting the previous character outside of Emacs. On many Unixsystems, this command will remap @key{DEL}:@examplestty erase `^?'@end example@itemThe person may prefer using the @key{Backspace} key for deleting theprevious character because it is more conveniently located on theirkeyboard or because they don't even have a separate Delete key. Inthis case, the @key{Backspace} key should be made to behave like@key{Delete}. There are several methods.@itemSome terminals (e.g., VT3## terminals) allow the character generatedby the @key{Backspace} key to be changed from a setup menu.@itemYou may be able to get a keyboard that is completely programmable.@itemUnder X or on a dumb terminal, it is possible to swap the@key{Backspace} and @key{Delete} keys inside Emacs:@lisp(keyboard-translate ?\C-h ?\C-?)@end lisp@xref{Swapping keys}, for further details of "keyboard-translate".@itemAnother approach is to switch key bindings and put help on @kbd{C-x h}instead:@lisp(global-set-key "\C-h" 'delete-backward-char);;; overrides mark-whole-buffer(global-set-key "\C-xh" 'help-command) @end lispOther popular key bindings for help are @kbd{M-?} and @kbd{C-x ?}.Don't try to bind @key{DEL} to @code{help-command}, because there aremany modes that have local bindings of @key{DEL} that will interfere.@end itemize@node stty and Backspace key, Swapping keys, Backspace invokes help, Key bindings@section Why doesn't Emacs look at the @file{stty} settings for @key{Backspace} vs. @key{Delete}?@cindex @file{stty} and Emacs@cindex Backspace and @file{stty}@cindex Delete and @file{stty}Good question!@node Swapping keys, Producing C-XXX with the keyboard, stty and Backspace key, Key bindings@section How do I swap two keys?@cindex Swapping keys@cindex Keys, swapping@cindex @code{keyboard-translate}In Emacs 19, you can swap two keys (or key sequences) by using the@code{keyboard-translate} function. For example, to turn @kbd{C-h} into@key{DEL} and @key{DEL} to @kbd{C-h}, use@lisp(keyboard-translate ?\C-h ?\C-?) ; translate `C-h' to DEL(keyboard-translate ?\C-? ?\C-h) ; translate DEL to `C-h'.@end lispThe first key sequence of the pair after the function identifies what isproduced by the keyboard; the second, what is matched for in thekeymaps.Keyboard translations are not the same as key bindings in keymaps.Emacs contains numerous keymaps that apply in different situations, butthere is only one set of keyboard translations, and it applies to everycharacter that Emacs reads from the terminal. Keyboard translationstake place at the lowest level of input processing; the keys that arelooked up in keymaps contain the characters that result from keyboardtranslation.@inforef{Keyboard Translations, Keyboard Translations, emacs}.@node Producing C-XXX with the keyboard, No Meta key, Swapping keys, Key bindings@section How do I produce C-XXX with my keyboard?@cindex Producing control characters@cindex Generating control characters@cindex Control characters, generatingOn terminals (but not under X), some common "aliases" are:@table @asis@item @kbd{C-2} or @kbd{C-@key{SPC}}@kbd{C-@@}@item @kbd{C-6}@kbd{C-^}@item @kbd{C-7} or @kbd{C-S--}@kbd{C-_}@item @kbd{C-4}@kbd{C-\}@item @kbd{C-5}@kbd{C-]}@item @kbd{C-/}@kbd{C-?}@end tableOften other aliases exist; use the @kbd{C-h c} command and try@key{CTRL} with all of the digits on your keyboard to see what getsgenerated. You can also try the @kbd{C-h w} command if you know thename of the command.@node No Meta key, No Escape key, Producing C-XXX with the keyboard, Key bindings@section What if I don't have a @key{Meta} key?@cindex No @key{Meta} key@cindex @key{Meta} key, what to do if you lack itInstead of typing @kbd{M-a}, you can type @kbd{@key{ESC} a}. In fact,Emacs converts @kbd{M-a} internally into @kbd{@key{ESC} a} anyway(depending on the value of @code{meta-prefix-char}). Note that youpress @key{Meta} and @key{a} together, while you press @kbd{ESC},release it, and then press @key{a}.@node No Escape key, Compose Character, No Meta key, Key bindings@section What if I don't have an @key{Escape} key?@cindex No Escape key@cindex Lacking an Escape key@cindex Escape key, lackingType @kbd{C-[} instead. This should send ASCII code 27 just like anEscape key would. @kbd{C-3} may also work on some terminal (but notunder X). For many terminals (notably DEC terminals) @key{F11}generates @key{ESC}. If not, the following form can be used to bind it:@lisp;;; F11 is the documented ESC replacement on DEC terminals.(define-key function-key-map [f11] [?\e]) @end lisp@node Compose Character, Binding combinations of modifiers and function keys, No Escape key, Key bindings@section Can I make my @key{Compose Character} key behave like a @key{Meta} key?@cindex @key{Compose Character} key, using as @key{Meta}@cindex @key{Meta}, using @key{Compose Character} forOn a dumb terminal such as a VT220, no. It is rumored that certainVT220 clones could have their @key{Compose} key configured this way. Ifyou're using X, you might be able to do this with the @file{xmodmap} program.@node Binding combinations of modifiers and function keys, Meta key does not work in xterm, Compose Character, Key bindings@section How do I bind a combination of modifier key and function key?@cindex Modifiers and function keys@cindex Function keys and modifiers@cindex Binding modifiers and function keysWith Emacs 19 you can represent modified function keys in vector formatby adding prefixes to the function key symbol. For example (from theon-line documentation):@lisp(global-set-key [?\C-x right] 'forward-page)@end lispwhere @samp{?\C-x} is the Lisp character constant for the character @kbd{C-x}.You can use the modifier keys @key{Control}, @key{Meta}, @key{Hyper},@key{Super}, @key{Alt}, and @key{Shift} with function keys. Torepresent these modifiers, prepend the strings @samp{C-}, @samp{M-},@samp{H-}, @samp{s-}, @samp{A-}, and @samp{S-} to the symbol name. Hereis how to make @kbd{H-M-RIGHT} move forward a word:@lisp(global-set-key [H-M-right] 'forward-word)@end lisp@itemize @bullet@item Not all modifiers are permitted in all situations. @key{Hyper},@key{Super}, and @key{Alt} are available only under X (provided thereare such keys). Non-ASCII keys and mouse events (e.g. @kbd{C-=} and@kbd{mouse-1}) also fall under this category.@end itemize@xref{Binding keys to commands}, for general key binding instructions.@node Meta key does not work in xterm, ExtendChar key does not work as Meta, Binding combinations of modifiers and function keys, Key bindings@section Why doesn't my @key{Meta} key work in an xterm window?@cindex @key{Meta} key and xterm@cindex Xterm and @key{Meta} keyTry all of these methods before asking for further help:@itemize @bullet@itemYou may have big problems using @file{mwm} as your window manager.(Does anyone know a good generic solution to allow the use of the@key{Meta} key in Emacs with @file{mwm}?)@itemFor X11: Make sure it really is a @key{Meta} key. Use @file{xev} tofind out what keysym your @key{Meta} key generates. It should be either@key{Meta}_L or @key{Meta}_R. If it isn't, use @file{xmodmap} to fixthe situation.@itemMake sure the pty the xterm is using is passing 8 bit characters.@samp{stty -a} (or @samp{stty everything}) should show @samp{cs8} somewhere.If it shows @samp{cs7} instead, use @samp{stty cs8 -istrip} (or @samp{sttypass8}) to fix it.@itemIf there is an rlogin connection between the xterm and the Emacs, the"-8" argument may need to be given to rlogin to make it pass all 8 bitsof every character.@itemIf the Emacs is running under Ultrix, it is reported that evaluating@code{(set-input-mode t nil)} helps.@itemIf all else fails, you can make xterm generate @kbd{@key{ESC} W} whenyou type @kbd{M-W}, which is the same conversion Emacs would make if itgot the @kbd{M-W} anyway. In X11R4, the following resourcespecification will do this:@exampleXTerm.VT100.EightBitInput: false@end example(This changes the behavior of the @code{insert-eight-bit} action.)With older xterms, you can specify this behavior with a translation:@exampleXTerm.VT100.Translations: #override \ Meta<KeyPress>: string(0x1b) insert()@end exampleYou might have to replace @samp{Meta} with @samp{Alt}.@end itemize@node ExtendChar key does not work as Meta, , Meta key does not work in xterm, Key bindings@section Why doesn't my @key{ExtendChar} key work as a @key{Meta} key under HP-UX 8.0 and 9.x?@cindex @key{ExtendChar} key as @key{Meta}@cindex @key{Meta}, using @key{ExtendChar} forThis is a result of an internationalization extension in X11R4 and thefact that HP is now using this extension. Emacs assumes thatXLookupString returns the same result regardless of the @key{Meta} keystate which is no longer necessarily true. Until Emacs is fixed, thetemporary kludge is to run this command after each time the X server isstarted but preferably before any xterm clients are:@examplexmodmap -e 'remove mod1 = Mode_switch'@end exampleThis will disable the use of the extra keysyms systemwide, which may beundesirable if you actually intend to use them.@c ------------------------------------------------------------@node Alternate character sets, Mail and news, Key bindings, Top@chapter Alternate character sets@cindex Alternate character sets@menu* Emacs does not display 8-bit characters:: * Inputting eight-bit characters:: * Kanji and Chinese characters:: * Right-to-left alphabets:: @end menu@node Emacs does not display 8-bit characters, Inputting eight-bit characters, Alternate character sets, Alternate character sets@section How do I make Emacs display 8-bit characters?@cindex Displaying eight-bit characters@cindex Eight-bit characters, displayingSee @inforef{Single-Byte European Support, Single-byte EuropeanCharacter Support, emacs}. On a non-window-system display you typicallyneed to use @code{set-terminal-coding-system} to tell Emacs what theterminal can display, even after setting the language environment.Otherwise non-ASCII characters will display as @samp{?}.@node Inputting eight-bit characters, Kanji and Chinese characters, Emacs does not display 8-bit characters, Alternate character sets@section How do I input eight-bit characters?@cindex Entering eight-bit characters@cindex Eight-bit characters, enteringVarious methods are available for input of eight-bit characters. See@inforef{Single-Byte European Support, Single-byte European CharacterSupport, emacs}. For more sophisticated methods, see @inforef{InputMethods, Input Methods, emacs}.@node Kanji and Chinese characters, Right-to-left alphabets, Inputting eight-bit characters, Alternate character sets@section Where can I get an Emacs that handles kanji, Chinese, or other character sets?@cindex Kanji, handling with Emacs@cindex Chinese, handling with Emacs@cindex Japanese, handling with Emacs@cindex Korean, handling with EmacsEmacs 20 now includes many of the features of MULE, the MultilingualEnhancement of Emacs. @xref{Installing Emacs}, for information on whereto find and download Emacs.@node Right-to-left alphabets, , Kanji and Chinese characters, Alternate character sets@section Where is an Emacs that can handle Semitic (right-to-left) alphabets?@cindex Right-to-left alphabets@cindex Hebrew, handling with Emacs@cindex Semitic alphabetsEmacs 20 supports Hebrew characters (ISO 8859-8), but does not yetsupport right-to-left character entry.@email{joel@@exc.com, Joel M. Hoffman} has written a Lisp package called@file{hebrew.el} that allows right-to-left editing of Hebrew. Itreportedly works out of the box with Emacs 19, but requires patches forEmacs 18. Write to Joel if you want the patches or package.@file{hebrew.el} requires a Hebrew screen font, but no other Hardware support.Joel has a screen font for PCs running MS-DOS and Linux.You might also try to query archie for files named with "hebrew";several ftp sites in Israel may also have the necessary files.@c ------------------------------------------------------------@node Mail and news, Concept index, Alternate character sets, Top@chapter Mail and news@cindex Mail and news@menu* Changing the included text prefix:: * Saving a copy of outgoing mail:: * Expanding aliases when sending mail:: * Rmail thinks all messages are one big one:: * Sorting the messages in an Rmail folder:: * Rmail writes to /usr/spool/mail:: * Recovering mail files when Rmail munges them:: * Replying to the sender of a message:: * MIME with Emacs mail packages:: * Automatically starting a mail or news reader:: * Reading news with Emacs:: * Gnus does not work with NNTP:: * Viewing articles with embedded underlining:: * Saving a multi-part Gnus posting:: * Starting Gnus faster:: * Catching up in all newsgroups:: * Killing based on nonstandard headers:: * Removing flashing messages:: * Catch-up is slow in Gnus:: * Gnus hangs for a long time:: * Learning more about Gnus:: @end menu@node Changing the included text prefix, Saving a copy of outgoing mail, Mail and news, Mail and news@section How do I change the included text prefix in mail/news followups?@cindex Prefix in mail/news followups, changing@cindex Included text prefix, changing@cindex Setting the included text characterIf you read mail with Rmail or news with Gnus, set the variable@code{mail-yank-prefix}. For VM, set @code{vm-included-text-prefix}.For mh-e, set @code{mh-ins-buf-prefix}.For fancier control of citations, use Supercite. @xref{Supercite}.To prevent Emacs from including various headers of the replied-tomessage, set the value of @code{mail-yank-ignored-headers} to anappropriate regexp.@node Saving a copy of outgoing mail, Expanding aliases when sending mail, Changing the included text prefix, Mail and news@section How do I save a copy of outgoing mail?@cindex Saving a copy of outgoing mail@cindex Copying outgoing mail to a file@cindex Filing outgoing mail@cindex Automatic filing of outgoing mail@cindex Mail, saving outgoing automaticallyYou can either mail yourself a copy by including a @samp{BCC} header in themail message, or store a copy of the message directly to a file byincluding an @samp{FCC} header.If you use standard mail, you can automatically create a @samp{BCC} toyourself by putting@lisp(setq mail-self-blind t)@end lispin your @file{.emacs} file. You can automatically include an "FCC:" field byputting something like the following in your @file{.emacs} file:@lisp(setq mail-archive-file-name (expand-file-name "~/outgoing"))@end lispThe output file will be in Unix mail format, which can be read directlyby VM, but not always by Rmail. @xref{Learning how to do something}.If you use @code{mh-e}, add an @samp{FCC} or @samp{BCC} field to yourcomponents file.It does not work to put "set record filename" in the @file{.mailrc}file.@node Expanding aliases when sending mail, Rmail thinks all messages are one big one, Saving a copy of outgoing mail, Mail and news@section Why doesn't Emacs expand my aliases when sending mail?@cindex Expanding aliases when sending mail@cindex Mail alias expansion@cindex Sending mail with aliases@itemize @bullet@itemYou must separate multiple addresses in the headers of the mail bufferwith commas. This is because Emacs supports RFC822 standard addresseslike this one:@exampleTo: Willy Smith <wks@@xpnsv.lwyrs.com>@end exampleHowever, you do not need to --- and probably should not, unless yoursystem's version of @file{/usr/ucb/mail} (aka mailx) supports RFC822-- separate addresses with commas in your @file{~/.mailrc} file.@itemEmacs normally only reads the @file{.mailrc} file once per session,when you start to compose your first mail message. If you edit.mailrc, you can type @kbd{M-x rebuild-mail-abbrevs @key{RET}} tomake Emacs reread @file{~/.mailrc}.@itemIf you like, you can expand mail aliases as abbrevs, as soon as youtype them in. To enable this feature, execute the following:@lisp(add-hook 'mail-setup-hook 'mail-abbrevs-setup)@end lispNote that the aliases are expanded automatically only after you type@key{RET} or a punctuation character (e.g. @kbd{,}). You can force theirexpansion by moving point to the end of the alias and typing @kbd{C-x a e}@kbd{M-x expand-abbrev}.@end itemize@node Rmail thinks all messages are one big one, Sorting the messages in an Rmail folder, Expanding aliases when sending mail, Mail and news@section Why does Rmail think all my saved messages are one big message?@cindex Rmail thinks all messages are one large messageA file created through the @samp{FCC} field in a message is in Unix mailformat, not the format that Rmail uses (BABYL format). Rmail will tryto convert a Unix mail file into BABYL format on input, but sometimes itmakes errors. For guaranteed safety, you can make the@file{saved-messages} file be an inbox for your Rmail file by using thefunction @code{set-rmail-inbox-list}.@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@section How can I sort the messages in my Rmail folder?@cindex Rmail, sorting messages in@cindex Folder, sorting messages in an Rmail@cindex Sorting messages in an Rmail folderIn Rmail, type @kbd{C-c C-s C-h} to get a list of sorting functionsand their key bindings.@node Rmail writes to /usr/spool/mail, Recovering mail files when Rmail munges them, Sorting the messages in an Rmail folder, Mail and news@section Why does Rmail need to write to @file{/usr/spool/mail}?@cindex Rmail and @file{/usr/spool/mail}@cindex @file{/usr/spool/mail} and RmailThis is the behavior of the @file{movemail} program which Rmail uses.This indicates that @file{movemail} is configured to use lock files.RMS writes:@quotationCertain systems require lock files to interlock access to mail files.On these systems, @file{movemail} must write lock files, or you risk losingmail. You simply must arrange to let @file{movemail} write them.Other systems use the flock system call to interlock access. On thesesystems, you should configure @file{movemail} to use @code{flock}.@end quotation@node Recovering mail files when Rmail munges them, Replying to the sender of a message, Rmail writes to /usr/spool/mail, Mail and news@section How do I recover my mail files after Rmail munges their format?@cindex Recovering munged mail files@cindex Rmail munged my files@cindex Mail files, recovering those munged by RmailIf you have just done @code{rmail-input} on a file and you don't want tosave it in Rmail's format (called BABYL), just kill the buffer (with@kbd{C-x k}).If you typed @kbd{M-x rmail} and it read some messages out of your inboxand you want to put them in a Unix mail file, use @kbd{C-o} on eachmessage.If you want to convert an existing file from BABYL format to Unix mailformat, use the command @kbd{M-x unrmail}: it will prompt you for theinput and output file names.@node Replying to the sender of a message, MIME with Emacs mail packages, Recovering mail files when Rmail munges them, Mail and news@section How can I force Rmail to reply to the sender of a message, but not the other recipients?@cindex Replying only to the sender of a message@cindex Sender, replying only to@cindex Rmail, replying to the sender of a message in@email{isaacson@@seas.upenn.edu, Ron Isaacson} says: When you hit@key{r} to reply in Rmail, by default it CCs all of the originalrecipients (everyone on the original @samp{To} and @samp{CC}lists). With a prefix argument (i.e., typing @kbd{C-u} before @key{r}),it replies only to the sender. However, going through the whole@kbd{C-u} business every time you want to reply is a pain. This is thebest fix I've been able to come up with:@lisp(defun rmail-reply-t () "Reply only to the sender of the current message. (See rmail-reply.)" (interactive) (rmail-reply t))(add-hook 'rmail-mode-hook '(lambda () (define-key rmail-mode-map "r" 'rmail-reply-t) (define-key rmail-mode-map "R" 'rmail-reply)))@end lisp@node MIME with Emacs mail packages, Automatically starting a mail or news reader, Replying to the sender of a message, Mail and news@section How can I get my favorite Emacs mail package to support MIME? @cindex MIME and Emacs mail packages@cindex Mail packages and MIME@cindex FAQ for MIME and EmacsRead the Emacs MIME FAQ, maintained by @email{trey@@cs.berkeley.edu,MacDonald Hall Jackson} at@uref{http://bmrc.berkeley.edu/~trey/emacs/mime.html}Version 6.x of VM supports MIME. @xref{VM}.@node Automatically starting a mail or news reader, Reading news with Emacs, MIME with Emacs mail packages, Mail and news@section How do I make Emacs automatically start my mail/news reader?@cindex Mail reader, starting automatically@cindex News reader, starting automatically@cindex Starting mail/news reader automaticallyTo start Emacs in Gnus:@exampleemacs -f gnus@end examplein Rmail:@exampleemacs -f rmail@end exampleA more convenient way to start with Gnus:@examplealias gnus 'emacs -f gnus'gnus@end exampleIt is probably unwise to automatically start your mail or news readerfrom your @file{.emacs} file. This would cause problems if you needed to runtwo copies of Emacs at one time. Also, this would make it difficult foryou to start Emacs quickly when you needed to.@node Reading news with Emacs, Gnus does not work with NNTP, Automatically starting a mail or news reader, Mail and news@section How do I read news under Emacs?@cindex Reading news under Emacs@cindex Usenet reader in Emacs@cindex Gnus newsreaderUse @kbd{M-x gnus}. It is documented in Info (@pxref{Learning how to do something}).@node Gnus does not work with NNTP, Viewing articles with embedded underlining, Reading news with Emacs, Mail and news@section Why doesn't Gnus work via NNTP?@cindex Gnus and NNTP@cindex NNTP, Gnus fails to work withThere is a bug in NNTP version 1.5.10, such that when multiple requestsare sent to the NNTP server, the server only handles the first onebefore blocking waiting for more input which never comes. NNTP version1.5.11 claims to fix this.You can work around the bug inside Emacs like this:@lisp(setq nntp-maximum-request 1)@end lispYou can find out what version of NNTP your news server is running bytelnetting to the NNTP port (usually 119) on the news server machine(i.e., "telnet server-machine 119"). The server should give its versionnumber in the welcome message. Type "quit" to get out.@xref{Spontaneous entry into isearch-mode}, for some additional ideas.@node Viewing articles with embedded underlining, Saving a multi-part Gnus posting, Gnus does not work with NNTP, Mail and news@section How do I view news articles with embedded underlining (e.g., ClariNews)?@cindex Underlining, embedded in news articles@cindex News articles with embedded underlining@cindex Embedded underlining in news articlesUnderlining appears like this:@example_^Hu_^Hn_^Hd_^He_^Hr_^Hl_^Hi_^Hn_^Hi_^Hn_^Hg@end example@email{amanda@@iesd.auc.dk, Per Abrahamsen} suggests using the followingcode, which uses the underline face to turn such text into trueunderlining:@lisp(defun gnus-article-prepare-overstrike () ;; Prepare article for overstrike commands. (save-excursion (set-buffer gnus-article-buffer) (let ((buffer-read-only nil)) (goto-char (point-min)) (while (search-forward "\b" nil t) (let ((next (following-char)) (previous (char-after (- (point) 2)))) (cond ((eq next previous) (delete-region (- (point) 2) (point)) (put-text-property (point) (1+ (point)) 'face 'bold)) ((eq next ?_) (delete-region (1- (point)) (1+ (point))) (put-text-property (1- (point)) (point) 'face 'underline)) ((eq previous ?_) (delete-region (- (point) 2) (point)) (put-text-property (point) (1+ (point)) 'face 'underline))))))))(add-hook 'gnus-article-prepare-hook 'gnus-article-prepare-overstrike)@end lispIf you prefer to do away with underlining altogether, you candestructively remove it with @kbd{M-x ununderline-region}; do thisautomatically via@lisp(add-hook 'gnus-article-prepare-hook '(lambda () (ununderline-region (point-min) (point-max))))@end lisp@node Saving a multi-part Gnus posting, Starting Gnus faster, Viewing articles with embedded underlining, Mail and news@section How do I save all the items of a multi-part posting in Gnus?@cindex Multi-part postings in Gnus, saving@cindex Saving multi-part postings in Gnus@cindex Gnus, saving multi-part postings inUse @code{gnus-uu}. Type @kbd{C-c C-v C-h} in the Gnus summary bufferto see a list of available commands.@node Starting Gnus faster, Catching up in all newsgroups, Saving a multi-part Gnus posting, Mail and news@section How do I make Gnus start up faster?@cindex Faster, starting Gnus@cindex Starting Gnus faster@cindex Gnus, starting fasterFrom the Gnus FAQ (@pxref{Learning more about Gnus}):@quotation@email{pktiwari@@eos.ncsu.edu, Pranav Kumar Tiwari} writes: I postedthe same query recently and I got an answer to it. I am going torepeat the answer. What you need is a newer version of gnus, version5.0.4+. I am using 5.0.12 and it works fine with me with thefollowing settings:@lisp(setq gnus-check-new-newsgroups nil gnus-read-active-file 'some gnus-nov-is-evil nil gnus-select-method '(nntp gnus-nntp-server))@end lisp@end quotation@node Catching up in all newsgroups, Killing based on nonstandard headers, Starting Gnus faster, Mail and news@section How do I catch up all newsgroups in Gnus?@cindex Catching up all newsgroups in Gnus@cindex Gnus, Catching up all newsgroups inIn the @file{*Newsgroup*} buffer, type @kbd{M-< C-x ( c y C-x ) M-0 C-x e}Leave off the initial @kbd{M-<} if you only want to catch up from pointto the end of the @file{*Newsgroup*} buffer.@node Killing based on nonstandard headers, Removing flashing messages, Catching up in all newsgroups, Mail and news@section Why can't I kill in Gnus based on the Newsgroups/Keywords/Control headers?@cindex Killing articles based on nonstandard headers@cindex Newsgroups header, killing articles based on@cindex Keywords header, killing articles based on@cindex Control header, killing articles based onGnus will complain that the @samp{Newsgroups}, @samp{Keywords}, and@samp{Control} headers are "Unknown header" fields.For the @samp{Newsgroups} header, there is an easy workaround: kill on the@samp{Xref} header instead, which will be present on any cross-posted article(as long as your site carries the cross-post group).If you really want to kill on one of these headers, you can do it likethis:@lisp(gnus-kill nil "^Newsgroups: .*\\(bad\\.group\\|worse\\.group\\)")@end lisp@node Removing flashing messages, Catch-up is slow in Gnus, Killing based on nonstandard headers, Mail and news@section How do I get rid of flashing messages in Gnus for slow connections?@cindex Flashing Gnus messages, removing@cindex Removing flashing Gnus messages@cindex Slow connections causing flashing messages in Gnus@cindex Gnus, flashing messages inSet @code{nntp-debug-read} to @code{nil}.@node Catch-up is slow in Gnus, Gnus hangs for a long time, Removing flashing messages, Mail and news@section Why is catch up slow in Gnus?@cindex Slow catch up in Gnus@cindex Gnus is slow when catching up@cindex Crosspostings make Gnus catching up slowBecause Gnus is marking crosspostings read. You can control this withthe variable @code{gnus-use-cross-reference}.@node Gnus hangs for a long time, Learning more about Gnus, Catch-up is slow in Gnus, Mail and news@section Why does Gnus hang for a long time when posting?@cindex Hangs in Gnus@cindex Gnus hangs while posting@cindex Posting, Gnus hangs wile@email{tale@@uunet.uu.net, David Lawrence} explains:@quotationThe problem is almost always interaction between NNTP and C News. NNTPPOST asks C News's inews to not background itself but rather hang aroundand give its exit status so it knows whether the post was successful.(That wait will on some systems not return the exit status of thewaited for job is a different sort of problem.) It ends up taking along time because inews is calling relaynews, which often waits foranother relaynews to free the lock on the news system so it can file thearticle.My preferred solution is to change inews to not call relaynews, butrather use newsspool. This loses some error-catching functionality, butis for the most part safe as inews will detect a lot of the errors onits own. The C News folks have sped up inews, too, so speed should lookbetter to most folks as that update propagates around.@end quotation@node Learning more about Gnus, , Gnus hangs for a long time, Mail and news@section Where can I find out more about Gnus?@cindex FAQ for Gnus@cindex Gnus FAQ@cindex Learning more about GNULook for the Gnus FAQ, available at@uref{http://www.ccs.neu.edu/software/contrib/gnus/}@node Concept index, , Mail and news, Top@unnumbered Concept Index@printindex cp@contents@bye