home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / CDROM / FAQs / G++ / part3 < prev    next >
Encoding:
Text File  |  1996-10-11  |  36.4 KB  |  886 lines

  1. Path: informatik.tu-muenchen.de!fu-berlin.de!news.mathworks.com!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!the-tech!reuven
  2. From: Reuven M. Lerner <reuven@the-tech.mit.edu>
  3. Newsgroups: gnu.emacs.help,comp.emacs,comp.answers,news.answers
  4. Subject: GNU Emacs Frequently Asked Questions (FAQ), part 3/4
  5. Supersedes: <GNU-Emacs-FAQ-3_842468882@the-tech.mit.edu>
  6. Followup-To: gnu.emacs.help
  7. Date: 10 Oct 1996 20:17:58 GMT
  8. Organization: GNU Emacs FAQ Central
  9. Lines: 866
  10. Approved: news-answers-request@MIT.EDU
  11. Expires: 18 Nov 1996 20:17:53 GMT
  12. Message-ID: <GNU-Emacs-FAQ-3_844978673@the-tech.mit.edu>
  13. Reply-To: reuven@netvision.net.il
  14. NNTP-Posting-Host: the-tech.mit.edu
  15. Summary: Questions and answers having to do with GNU Emacs
  16. Keywords: GNU Emacs editors questions
  17. Originator: reuven@the-tech
  18. Xref: informatik.tu-muenchen.de gnu.emacs.help:43503 comp.emacs:28838 comp.answers:21581 news.answers:83796
  19.  
  20. Archive-name: GNU-Emacs-FAQ/part3
  21.  
  22. ------------------------------------------------------------
  23.  
  24. If you are viewing this text in a GNU Emacs Buffer, you can type "M-2 C-x
  25. $" to get an overview of just the questions.  Then, when you want to look
  26. at the text of the answers, just type "C-x $".
  27.  
  28. To search for a question numbered XXX, type "M-C-s ^XXX:", followed by a
  29. C-r if that doesn't work.  Type RET to end the search.
  30.  
  31. If you have w3-mode installed (see question 111), you can visit ftp and
  32. HTTP uniform resource locators (URLs) by placing the cursor on the URL and
  33. typing M-x w3-follow-url-at-point.
  34.  
  35. The FAQ is posted in five parts; if you are missing a section or would
  36. prefer to read the FAQ in a single file, see question 22.
  37.  
  38. ------------------------------------------------------------
  39.  
  40.  
  41.  
  42. Bugs/Problems
  43.  
  44. 70:  Does Emacs have problems with files larger than 8 megabytes?
  45.  
  46.   Old versions (i.e., anything before 19.29) of Emacs had problems editing
  47.   files larger than 8 megabytes.  As of version 19.29, the maximum buffer
  48.   size is at least 2^27-1, or or 134,217,727 bytes.
  49.  
  50.   If you are using an older version of Emacs and cannot upgrade, you will
  51.   have to recompile. Leonard N. Zubkoff <lnz@lucid.com> suggests putting
  52.   the following two lines in src/config.h before compiling Emacs to allow
  53.   for 26-bit integers and pointers (and thus file sizes of up to 33,554,431
  54.   bytes):
  55.  
  56.     #define VALBITS 26
  57.     #define GCTYPEBITS 5
  58.  
  59.   WARNING: This method may result in "ILLEGAL DATATYPE" and other random
  60.   errors on some machines.
  61.  
  62.   David Gillespie <daveg@csvax.cs.caltech.edu> explains how this problems
  63.   crops up; while his numbers are true only for pre-19.29 versions of
  64.   Emacs, the theory remains the same with current versions.
  65.  
  66.     Emacs is largely written in a dialect of Lisp; Lisp is a freely-typed
  67.     language in the sense that you can put any value of any type into any
  68.     variable, or return it from a function, and so on.  So each value must
  69.     carry a "tag" along with it identifying what kind of thing it is, e.g.,
  70.     integer, pointer to a list, pointer to an editing buffer, and so on.
  71.     Emacs uses standard 32-bit integers for data objects, taking the top 8
  72.     bits for the tag and the bottom 24 bits for the value.  So integers
  73.     (and pointers) are somewhat restricted compared to true C integers and
  74.     pointers.
  75.  
  76.     Emacs uses 8-bit tags because that's a little faster on byte-oriented
  77.     machines, but there are only really enough tags to require 6 bits.
  78.  
  79. 71:  How do I get rid of ^M or echoed commands in my shell buffer?
  80.  
  81.   Try typing "M-x shell-strip-ctrl-m RET" while in shell-mode to make them
  82.   go away.  If that doesn't work, you have several options:
  83.  
  84.   For tcsh, put this in your .cshrc (or .tcshrc) file:
  85.  
  86.     if ($?EMACS) then
  87.         if ("$EMACS" == t) then
  88.             if ($?tcsh) unset edit
  89.             stty nl
  90.         endif
  91.     endif
  92.  
  93.   Or put this in your .emacs_tcsh file:
  94.  
  95.     unset edit
  96.     stty nl
  97.  
  98.   Alternatively, use csh in your shell buffers instead of tcsh.  One way
  99.   is:
  100.  
  101.     (setq explicit-shell-file-name "/bin/csh")
  102.  
  103.   and another is to do this in your .cshrc (or .tcshrc) file:
  104.  
  105.     setenv ESHELL /bin/csh
  106.  
  107.   (You must start Emacs over again with the environment variable properly
  108.   set for this to take effect.)
  109.  
  110.   You can also set the ESHELL environment variable in Emacs Lisp with
  111.   the following Lisp form,
  112.  
  113.     (setenv "ESHELL" "/bin/csh")
  114.  
  115.   On a related note: If your shell is echoing your input line in the shell
  116.   buffer, you might want to try the following command in your shell
  117.   start-up file:
  118.  
  119.     stty -icrnl -onlcr -echo susp ^Z
  120.  
  121. 72:  Why do I get "Process shell exited abnormally with code 1"?
  122.  
  123.   The most likely reason for this message is that the "env" program is not
  124.   properly installed.  Compile this program for your architecture, and
  125.   install it with a+x permission in the architecture-dependent Emacs
  126.   program directory.  (You can find what this directory is at your site by
  127.   inspecting the value of the variable exec-directory by typing "C-h v
  128.   exec-directory RET".)
  129.  
  130.   You should also check for other programs named "env" in your path (e.g.,
  131.   SunOS has a program named /usr/bin/env).  We don't understand why this
  132.   can cause a failure and don't know a general solution for working around
  133.   the problem in this case.
  134.  
  135.   The "make clean" command will remove "env" and other vital programs, so
  136.   be careful when using it.
  137.  
  138.   It has been reported that this sometimes happened when Emacs was started
  139.   as an X client from an xterm window (i.e., had a controlling tty) but the
  140.   xterm was later terminated.
  141.  
  142.   See also PROBLEMS (in the top-level directory when you unpack the Emacs
  143.   source) for other possible causes of this message.
  144.  
  145. 73:  Where is the termcap/terminfo entry for terminal type "emacs"?
  146.  
  147.   The termcap entry for terminal type "emacs" is ordinarily put in the
  148.   TERMCAP environment variable of subshells.  It may help in certain
  149.   situations (e.g., using rlogin from shell buffer) to add an entry for
  150.   "emacs" to the system-wide termcap file.  Here is a correct termcap entry
  151.   for "emacs":
  152.  
  153.     emacs:tc=unknown:
  154.  
  155.   To make a terminfo entry for "emacs", use "tic" or "captoinfo."  You need
  156.   to generate /usr/lib/terminfo/e/emacs.  It may work to simply copy
  157.   /usr/lib/terminfo/d/dumb to /usr/lib/terminfo/e/emacs.
  158.  
  159.   Having a termcap/terminfo entry will not enable the use of full screen
  160.   programs in shell buffers.  Use M-x terminal-emulator for that instead.
  161.  
  162.   A workaround to the problem of missing termcap/terminfo entries is to
  163.   change terminal type "emacs" to type "dumb" or "unknown" in your shell
  164.   start up file.  "csh" users could put this in their .cshrc files:
  165.  
  166.     if ("$term" == emacs) set term=dumb
  167.  
  168. 74:  Why does Emacs spontaneously start displaying "I-search:" and beeping?
  169.  
  170.   Your terminal (or something between your terminal and the computer) is
  171.   sending C-s and C-q for flow control, and Emacs is receiving these
  172.   characters and interpreting them as commands.  (The C-s character
  173.   normally invokes the isearch-forward command.)  For possible solutions,
  174.   see question 121.
  175.  
  176. 75:  Why can't Emacs talk to certain hosts (or certain hostnames)?
  177.  
  178.   The problem may be that Emacs is linked with a wimpier version of
  179.   gethostbyname than the rest of the programs on the machine.  This is
  180.   often manifested as a message on startup of "X server not responding.
  181.   Check your DISPLAY environment variable." or a message of "Unknown host"
  182.   from open-network-stream.
  183.  
  184.   On a Sun, this may be because Emacs had to be linked with the static C
  185.   library.  The version of gethostbyname in the static C library may only
  186.   look in /etc/hosts and the NIS (YP) maps, while the version in the
  187.   dynamic C library may be smart enough to check DNS in addition to or
  188.   instead of NIS.  On a Motorola Delta running System V R3.6, the version
  189.   of gethostbyname in the standard library works, but the one that works
  190.   with NIS doesn't (the one you get with -linet).  Other operating systems
  191.   have similar problems.
  192.  
  193.   Try these options:
  194.  
  195.   * Explicitly add the host you want to communicate with to /etc/hosts.
  196.  
  197.   * Relink Emacs with this line in src/config.h:
  198.  
  199.       #define LIBS_SYSTEM -lresolv
  200.  
  201.   * Replace gethostbyname and friends in libc.a with more useful versions
  202.     such as the ones in libresolv.a.  Then relink Emacs.
  203.  
  204.   * If you are actually running NIS, make sure that "ypbind" is properly
  205.     told to do DNS lookups with the correct command line switch.
  206.  
  207. 76:  Why does Emacs say "Error in init file"?
  208.  
  209.   An error occurred while loading either your .emacs file or the
  210.   system-wide lisp/default.el file.  For information on how to debug your
  211.   .emacs file, see question 27.
  212.  
  213.   It may be the case that you need to load some package first, or use a
  214.   hook that will be evaluated after the package is loaded.  A common case
  215.   of this is explained in question 117.
  216.  
  217. 77:  Why does Emacs ignore my X resources (my .Xdefaults file)?
  218.  
  219.   As of version 19, Emacs searches for X resources in the files specified
  220.   by the XFILESEARCHPATH, XUSERFILESEARCHPATH, and XAPPLRESDIR environment
  221.   variables, emulating the functionality provided by programs written using
  222.   Xt.
  223.  
  224.   XFILESEARCHPATH and XUSERFILESEARCHPATH should be a list of file names
  225.   separated by colons; XAPPLRESDIR should be a list of directory names
  226.   separated by colons.
  227.  
  228.   Emacs searches for X resources
  229.  
  230.     + specified on the command line, with the "-xrm RESOURCESTRING"
  231.       option,
  232.     + then in the value of the XENVIRONMENT environment variable,
  233.       - or if that is unset, in the file named ~/.Xdefaults-HOSTNAME if it
  234.         exists
  235.         (where HOSTNAME is the hostname of the machine Emacs is running on),
  236.     + then in the screen-specific and server-wide resource properties
  237.       provided by the server,
  238.       - or if those properties are unset, in the file named ~/.Xdefaults
  239.         if it exists,
  240.     + then in the files listed in XUSERFILESEARCHPATH,
  241.       - or in files named LANG/Emacs in directories listed in XAPPLRESDIR
  242.         (where LANG is the value of the LANG environment variable), if
  243.         the LANG environment variable is set,
  244.       - or in files named Emacs in the directories listed in XAPPLRESDIR
  245.       - or in ~/LANG/Emacs (if the LANG environment variable is set),
  246.       - or in ~/Emacs,
  247.     + then in the files listed in XFILESEARCHPATH.
  248.  
  249. 78:  Why does Emacs take 20 seconds to visit a file?
  250.  
  251.   The usual cause is that the master lock file, "!!!SuperLock!!!" has been
  252.   left in the lock directory somehow.  Delete it.
  253.  
  254.   Mark Meuer <meuer@geom.umn.edu> says that NeXT NFS has a bug where an
  255.   exclusive create succeeds but returns an error status.  This can cause
  256.   the same problem.  Since Emacs's file locking doesn't work over NFS
  257.   anyway, the best solution is to recompile Emacs with CLASH_DETECTION
  258.   undefined.
  259.  
  260. 79:  How do I edit a file with a `$' in its name?
  261.  
  262.   When entering a filename in the minibuffer, Emacs will attempt to expand
  263.   a `$' followed by a word as an environment variable.  To suppress this
  264.   behavior, type "$$" instead.
  265.  
  266. 80:  Why does shell mode lose track of the shell's current directory?
  267.  
  268.   Emacs has no way of knowing when the shell actually changes its
  269.   directory.  This is an intrinsic limitation of Unix.  So it tries to
  270.   guess by recognizing "cd" commands.  If you type "cd" followed by a
  271.   directory name with a variable reference ("cd $HOME/bin") or with a shell
  272.   metacharacter ("cd ../lib*"), Emacs will fail to correctly guess the
  273.   shell's new current directory.  A huge variety of fixes and enhancements
  274.   to shell mode for this problem have been written to handle this problem.
  275.   Check the Lisp Code Directory (see question 88).
  276.  
  277.   You can tell Emacs the shell's current directory with the command "M-x
  278.   dirs".
  279.  
  280. 81:  Are there any security risks in Emacs?
  281.  
  282.   * the "movemail" incident (No, this is not a risk.)
  283.  
  284.     In his book "The Cuckoo's Egg," Cliff Stoll describes this in chapter
  285.     4.  The site at LBL had installed the "etc/movemail" program setuid
  286.     root.  (As of version 19, movemail is in your architecture-specific
  287.     directory; type "C-h v exec-directory RET" to see what it is.)  Since
  288.     "movemail" had not been designed for this situation, a security hole
  289.     was created and users could get root privileges.
  290.  
  291.     "movemail" has since been changed so that even if it is installed
  292.     setuid root this security hole will not be a result.
  293.  
  294.     We have heard unverified reports that the 1988 Internet worm took
  295.     advantage of this configuration problem.
  296.  
  297.   * the file-local-variable feature (Yes, a risk, but easy to change.)
  298.  
  299.     There is an Emacs feature that allows the setting of local values for
  300.     variables when editing a file by including specially formatted text
  301.     near the end of the file.  This feature also includes the ability to
  302.     have arbitrary Emacs Lisp code evaluated when the file is visited.
  303.     Obviously, there is a potential for Trojan horses to exploit this
  304.     feature.
  305.  
  306.     Emacs 18 allowed this feature by default; users could disable it by
  307.     setting the variable inhibit-local-variables to a non-nil value.
  308.  
  309.     As of Emacs 19, the opposite is true: Emacs disallows file variable by
  310.     default, and users must explicitly enable them by setting the variable
  311.     enable-local-variables to a non-nil value.  You can also tell Emacs
  312.     whether to allow the evaluation of Emacs Lisp code found at the bottom
  313.     of files by setting the variable enable-local-eval.
  314.  
  315.     For more information, see "File Variables" in the on-line manual.
  316.  
  317.   * synthetic X events (Yes, a risk; use MIT-MAGIC-COOKIE-1 or better.)
  318.  
  319.     Emacs accepts synthetic X events generated by the SendEvent request as
  320.     though they were regular events.  As a result, if you are using the
  321.     trivial host-based authentication, other users who can open X
  322.     connections to your X workstation can make your Emacs process do
  323.     anything, including run other processes with your privileges.
  324.  
  325.     The only fix for this is to prevent other users from being able to open
  326.     X connections.  The standard way to prevent this is to use a real
  327.     authentication mechanism, such as MIT-MAGIC-COOKIE-1.  If using the
  328.     "xauth" program has any effect, then you are probably using
  329.     MIT-MAGIC-COOKIE-1.  Your site may be using a superior authentication
  330.     method; ask your system administrator.
  331.  
  332.     If real authentication is not a possibility, you may be satisfied by
  333.     just allowing hosts access for brief intervals while you start your X
  334.     programs, then removing the access.  This reduces the risk somewhat by
  335.     narrowing the time window when hostile users would have access, but
  336.     DOES NOT ELIMINATE THE RISK.
  337.  
  338.     On most computers running Unix and X Windows, you enable and disable
  339.     access using the "xhost" command.  To allow all hosts access to your X
  340.     server, use
  341.  
  342.       xhost +
  343.  
  344.     at the shell prompt, which (on an HP machine, at least) produces the
  345.     following message:
  346.  
  347.       access control disabled, clients can connect from any host
  348.  
  349.     To deny all hosts access to your X server (except those explicitly
  350.     allowed by name), use
  351.  
  352.       xhost -
  353.  
  354.     On the test HP computer, this command generated the following message:
  355.  
  356.       access control enabled, only authorized clients can connect
  357.  
  358. 82: Dired says, "no file on this line" when I try to do something.
  359.  
  360.   Chances are you're using a localized version of Unix that doesn't
  361.   use US date format in dired listings.  You can check this by looking
  362.   at dired listings or by typing `ls -l' to a shell and looking at the
  363.   dates that come out.
  364.  
  365.   Dired uses a regular expression to find the beginning of a file
  366.   name.  In a long Unix-style directory listing ("ls -l"), the file
  367.   name starts after the date.  The regexp has thus been written to
  368.   look for the date, the format of which can vary on non-US systems.
  369.  
  370.   There are two approaches to solving this.  The first one involves
  371.   setting things up so that "ls -l" outputs US date format.  This can
  372.   be done by setting the locale.  See your OS manual for more
  373.   information.
  374.  
  375.   The second approach involves changing the regular expression used by
  376.   dired, dired-move-to-filename-regexp.
  377.  
  378.  
  379. Difficulties Building/Installing/Porting Emacs
  380.  
  381. 83:  How do I install Emacs?
  382.  
  383.   This answer is meant for users of Unix and Unix-like systems.  Users of
  384.   other operating systems should see the series of questions beginning with
  385.   question 93, which describe where to get non-Unix source and binaries.
  386.   These packages should come with installation instructions.
  387.  
  388.   For Unix and Unix-like systems, the easiest way is often to compile it
  389.   from scratch.  You will need:
  390.  
  391.   * Emacs sources.  See question 91 for a list of ftp sites that make them
  392.     available.  On prep.ai.mit.edu, the main GNU distribution site, sources
  393.     are available at
  394.  
  395.       ftp://prep.ai.mit.edu/pub/gnu/emacs-19.34b.tar.gz
  396.  
  397.     The above will obviously change as new versions of Emacs come out.  For
  398.     instance, when Emacs 19.35 is released, it will most probably be
  399.     available at
  400.  
  401.       ftp://prep.ai.mit.edu/pub/gnu/emacs-19.35.tar.gz
  402.  
  403.     Again, you should use one of the mirror sites in question 91 (and
  404.     adjust the URL accordingly) so as to reduce load on prep.
  405.  
  406.   * Gzip, the GNU compression utility.  You can get gzip via anonymous ftp
  407.     at prep and its mirror sites; it should compile and install without
  408.     much trouble on most systems.  Once you have retrieved the Emacs
  409.     sources, you will probably be able to uncompress them with the command
  410.  
  411.       gunzip --verbose emacs-19.34b.tar.gz
  412.  
  413.     changing the Emacs version (19.34b), as necessary.  Once gunzip has
  414.     finished doing its job, a file by the name of "emacs-19.34.tar" should
  415.     be in your build directory.
  416.  
  417.   * Tar, the "tape archiving" program, which moves multiple files into and
  418.     out of archive files, or "tarfiles."  All of the files comprising the
  419.     Emacs source come in a single tarfile, and must be extracted using tar
  420.     before you can build Emacs.  Typically, the extraction command would
  421.     look like
  422.  
  423.       tar -xvvf emacs-19.34b.tar
  424.  
  425.     The `x' indicates that we want to extract files from this tarfile, the
  426.     two `v's force verbose output, and the `f' tells tar to use a disk
  427.     file, rather than one on tape.
  428.  
  429.     If you're using GNU tar (available at prep and its mirrors), you can
  430.     combine this step and the previous one by using the command
  431.  
  432.       tar -zxvvf emacs-19.34b.tar.gz
  433.  
  434.     The additional `z' at the beginning of the options list tells GNU tar
  435.     to uncompress the file with gunzip before extracting the tarfile's
  436.     components.
  437.  
  438.   At this point, the Emacs sources (all 25+ megabytes of them) should be
  439.   sitting in a directory called "emacs-19.34b".  On most common Unix and
  440.   Unix-like systems, you should be able to compile Emacs (with X Windows
  441.   support) with the following commands:
  442.  
  443.     cd emacs-19.34b     [ change directory to emacs-19.34b ]
  444.     ./configure         [ configure Emacs for your particular system ]
  445.     make                [ use Makefile to build components, then Emacs ]
  446.  
  447.   If the "make" completes successfully, the odds are fairly good that the
  448.   build has gone well.  (See question 85 if you weren't successful.)
  449.  
  450.   To install Emacs in its default directories of /usr/local/bin (binaries),
  451.   /usr/local/share/emacs/19.xx (Lisp code and support files), and
  452.   /usr/local/info (Info documentation), become the super-user and type
  453.  
  454.     make install
  455.  
  456.   Note that "make install" will overwrite /usr/local/bin/emacs and any
  457.   Emacs Info files that might be in /usr/local/info.
  458.  
  459.   Much more verbose instructions (with many more hints and suggestions)
  460.   come with the Emacs sources, in the file "INSTALL".
  461.  
  462. 84:  How do I update Emacs to the latest version?
  463.  
  464.   Follow the instructions in question 83.
  465.  
  466.   Emacs 19 places nearly everything in version-specific directories (e.g.,
  467.   /usr/local/share/emacs/19.34b), so the only files that can be overwritten
  468.   when installing a new release are /usr/local/bin/emacs and the Emacs Info
  469.   documentation in /usr/local/info.  Back up these files before you install
  470.   a new release, and you shouldn't have too much trouble.
  471.  
  472. 85:  What should I do if I have trouble building Emacs?
  473.  
  474.   First look in the file PROBLEMS (in the top-level directory when you
  475.   unpack the Emacs source) to see if there is already a solution for your
  476.   problem.  Next, look for other questions in this FAQ that have to do with
  477.   Emacs installation and compilation problems.
  478.  
  479.   If you'd like to have someone look at your problem and help solve it, see
  480.   question 21.
  481.  
  482.   If you don't find a solution, then report your problem via e-mail to
  483.   bug-gnu-emacs@prep.ai.mit.edu.  Please do not post it to gnu.emacs.help
  484.   or e-mail it to help-gnu-emacs@prep.ai.mit.edu.  For further guidelines,
  485.   see question 8 and question 10.
  486.  
  487. 86:  Why does linking Emacs with -lX11 fail?
  488.  
  489.   Emacs needs to be linked with the static version of the X11 library,
  490.   libX11.a.  This may be missing.
  491.  
  492.   Under OpenWindows, you may need to use "add_services" to add the
  493.   "OpenWindows Programmers" optional software category from the CD-ROM.
  494.  
  495.   Under HP-UX 8.0, you may need to run "update" again to load the X11-PRG
  496.   "fileset".  This may be missing even if you specified "all filesets" the
  497.   first time.  If libcurses.a is missing, you may need to load the
  498.   "Berkeley Development Option."
  499.  
  500.   David Zuhn <zoo@armadillo.com> says that MIT X builds shared libraries by
  501.   default, and only shared libraries, on those platforms that support them.
  502.   These shared libraries can't be used when undumping temacs (the last
  503.   stage of the Emacs build process).  To get regular libraries in addition
  504.   to shared libraries, add this to site.cf:
  505.  
  506.       #define ForceNormalLib YES
  507.  
  508.   Other systems may have similar problems.  You can always define
  509.   CANNOT_DUMP and link with the shared libraries instead.
  510.  
  511.   To get the Xmenu stuff to work, you need to find a copy of MIT's
  512.   liboldX.a.
  513.  
  514.  
  515. Finding/Getting Emacs and Related Packages
  516.  
  517. 87:  Where can I get Emacs on the net (or by snail mail)?
  518.  
  519.   Look in the files etc/DISTRIB and etc/FTP for information on nearby
  520.   archive sites and etc/ORDERS for mail orders.  If you don't already have
  521.   Emacs, see question 20 for how to get these files.
  522.  
  523.   See question 83 for information on how to obtain and build the latest
  524.   version of Emacs, and question 91 for a list of archive sites that make
  525.   GNU software available.
  526.  
  527. 88:  How do I find a Emacs Lisp package that does XXX?
  528.  
  529.   First of all, you should check to make sure that the package isn't
  530.   already available.  For example, typing "M-x apropos RET wordstar RET"
  531.   lists all functions and variables containing the string "wordstar".
  532.  
  533.   It is also possible that the package is on your system, but has not been
  534.   loaded.  To see which packages are available for loading, look through
  535.   your computer's lisp directory (see question 4).  The Lisp source to most
  536.   most packages contains a short description of how they should be loaded,
  537.   invoked, and configured -- so before you use or modify a Lisp package,
  538.   see if the author has provided any hints in the source code.
  539.  
  540.   If a package does not come with Emacs, check the Lisp Code Directory,
  541.   maintained by Dave Brennan <brennan@hal.com>.  The directory is contained
  542.   in the file LCD-datafile.Z, available from the Emacs Lisp Archive (see
  543.   question 89), and is accessed using the "lispdir" package, available from
  544.   the same site.  Note that lispdir.el requires crypt++, which you can grab
  545.   from the Emacs Lisp Archive's "misc" subdirectory when you get
  546.   lispdir.el.
  547.  
  548.   Once you have installed lispdir.el and LCD-datafile, you can use "M-x
  549.   lisp-dir-apropos" to search the listing.  For example, "M-x
  550.   lisp-dir-apropos RET ange-ftp RET" produces this output:
  551.  
  552.               GNU Emacs Lisp Code Directory Apropos -- "ange-ftp"
  553.      "~/" refers to archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/
  554.  
  555.           ange-ftp (4.18)       15-Jul-1992
  556.                Andy Norman, <ange@hplb.hpl.hp.com>
  557.                ~/packages/ange-ftp.tar.Z
  558.                transparent FTP Support for GNU Emacs
  559.           auto-save (1.19)      01-May-1992
  560.                Sebastian Kremer, <sk@thp.uni-koeln.de>
  561.                ~/misc/auto-save.el.Z
  562.                Safer autosaving with support for ange-ftp and /tmp
  563.           ftp-quik (1.0)        28-Jul-1993
  564.                Terrence Brannon, <tb06@pl122f.eecs.lehigh.edu>
  565.                ~/modes/ftp-quik.el.Z
  566.                Quik access to dired'ing of ange-ftp and normal paths
  567.  
  568.   You actually don't need the directory file LCD-datafile if your computer
  569.   is on the Internet, since the latest version is retrieved automatically
  570.   the first time you type "M-x lisp-dir-apropos" in a particular Emacs
  571.   session.  If you would prefer to use a local copy of LCD-datafile, be
  572.   sure to set the variable lisp-code-directory at the top of the lispdir.el
  573.   source code.
  574.  
  575.   A searchable version of the LCD is also available at
  576.  
  577.     http://www.cs.indiana.edu/LCD/cover.html
  578.  
  579. 89:  Where can I get Emacs Lisp packages that don't come with Emacs?
  580.  
  581.   First, check the Lisp Code Directory to find the name of the package you
  582.   are looking for (see question 88).  Next, check local archives and the
  583.   Emacs Lisp Archive to find a copy of the relevant files.  If you still
  584.   haven't found it, you can send e-mail to the author asking for a copy.
  585.   If you find Emacs Lisp code that doesn't appear in the LCD, please submit
  586.   a copy to the LCD (see question 90).
  587.  
  588.   You can access the Emacs Lisp Archive at the following sites:
  589.  
  590.     ftp://archive.cis.ohio-state.edu/pub/gnu/emacs/elisp-archive/
  591.     ftp://calypso-2.oit.unc.edu/pub/gnu/elisp-archive/
  592.     ftp://faui43.informatik.uni-erlangen.de/pub/gnu/elisp-archive/
  593.     ftp://ftp.cs.umn.edu/pub/elisp-archive/
  594.     ftp://ftp.diku.dk/pub/elisp-archive/
  595.     ftp://ftp.uni-mainz.de/pub/gnu/elisp-archive/
  596.     ftp://ftp.uu.net/packages/gnu/emacs-lisp/
  597.     ftp://gatekeeper.dec.com/pub/GNU/elisp-archive/
  598.     ftp://nic.funet.fi/pub/gnu/emacs/elisp-archive/
  599.     ftp://nic.switch.ch/mirror/elisp-archive/
  600.     ftp://quepasa.cs.tu-berlin.de/pub/gnu/elisp/
  601.     ftp://src.doc.ic.ac.uk/gnu/EmacsBits/elisp-archive/
  602.  
  603.   Retrieve and read the file README first.
  604.  
  605.   NOTE: * The archive maintainers do not have time to answer individual
  606.           requests for packages or the list of packages in the archive.  If
  607.           you cannot use FTP or UUCP to access the archive yourself, try to
  608.           find a friend who can, but please don't ask the maintainers.
  609.  
  610.         * Any files with names ending in ".Z", ".z", or ".gz" are
  611.           compressed, so you should use "binary" mode in FTP to retrieve
  612.           them.  You should also use binary mode whenever you retrieve any
  613.           files with names ending in ".elc".
  614.  
  615. 90:  How do I submit code to the Emacs Lisp Archive?
  616.  
  617.   Guidelines and procedures for submission to the archive can be found in
  618.   the file GUIDELINES in the archive directory (see question 89).  It
  619.   covers documentation, copyrights, packaging, submission, and the Lisp
  620.   Code Directory Record.  Anonymous FTP uploads are not permitted.
  621.   Instead, all submissions are mailed to elisp-archive@cis.ohio-state.edu.
  622.   The lispdir.el package has a function named submit-lcd-entry which will
  623.   help you with this.
  624.  
  625. 91:  Where can I get other up-to-date GNU stuff?
  626.  
  627.   The most up-to-date official GNU software is normally kept on
  628.   prep.ai.mit.edu and is available at
  629.  
  630.     ftp://prep.ai.mit.edu/pub/gnu
  631.  
  632.   Read the files etc/DISTRIB and etc/FTP for more information.
  633.  
  634.   The following sites are all mirror images of the GNU distribution area:
  635.  
  636.     ASIA: ftp://cair.kaist.ac.kr/pub/gnu,
  637.           ftp://ftp.nectec.or.th/pub/mirrors/gnu,
  638.           ftp://utsun.s.u-tokyo.ac.jp/ftpsync/prep,
  639.           ftp://ftp.cs.titech.ac.jp/pub/gnu
  640.  
  641.     AUSTRALIA: ftp://archie.au/gnu (archie.oz or archie.oz.au for ACSnet)
  642.  
  643.     AFRICA: ftp://ftp.sun.ac.za/pub/gnu
  644.  
  645.     MIDDLE-EAST: ftp://ftp.technion.ac.il/pub/unsupported/gnu
  646.  
  647.     EUROPE: ftp://ftp.denet.dk/pub/gnu,
  648.             ftp://ftp.funet.fi/pub/gnu,
  649.             ftp://ftp.informatik.rwth-aachen.de/pub/gnu,
  650.             ftp://ftp.informatik.tu-muenchen.de/pub/comp/gnu,
  651.             ftp://ftp.luth.se/pub/unix/gnu,
  652.             ftp://ftp.stacken.kth.se/pub/gnu,
  653.             ftp://ftp.win.tue.nl/pub/gnu,
  654.             ftp://isy.liu.se/pub/gnu,
  655.             ftp://nic.switch.ch/mirror/gnu,
  656.             ftp://archive.eu.net/pub/gnu,
  657.             ftp://ftp.eunet.ch/software/gnu,
  658.             ftp://ftp.ieunet.ie/pub/gnu,
  659.             ftp://ftp.mcc.ac.uk/pub/gnu,
  660.             ftp://ftp.sunet.se:/pub/gnu,
  661.             ftp://ftp.univ-lyon1.fr/pub/gnu,
  662.             ftp://irisa.irisa.fr/pub/gnu,
  663.             ftp://src.doc.ic.ac.uk/gnu,
  664.             ftp://unix.hensa.ac.uk/pub/uunet/systems/gnu
  665.  
  666.     SOUTH AMERICA: ftp.unicamp.br:/pub/gnu
  667.  
  668.     WESTERN CANADA: ftp.cs.ubc.ca:/mirror2/gnu
  669.  
  670.     USA: ftp://col.hp.com/mirrors/gnu,
  671.          ftp://f.ms.uky.edu/pub3/gnu,
  672.          ftp://ftp.cs.columbia.edu/archives/gnu/prep,
  673.          ftp://ftp.digex.net/pub/gnu,
  674.          ftp://ftp.hawaii.edu/mirrors/gnu,
  675.          ftp://ftp.kpc.com/pub/mirror/gnu,
  676.          ftp://ftp.uu.net/systems/gnu,
  677.          ftp://gatekeeper.dec.com/pub/GNU,
  678.          ftp://jaguar.utah.edu/gnustuff,
  679.          ftp://labrea.stanford.edu/pub/gnu,
  680.          ftp://mrcnext.cso.uiuc.edu/pub/gnu,
  681.          ftp://vixen.cso.uiuc.edu/gnu,
  682.          ftp://wuarchive.wustl.edu/systems/gnu
  683.  
  684.   The directory at ftp.uu.net is a mirror of prep except that files larger
  685.   than one megabyte are split into multiple parts.  If you have trouble
  686.   transferring large files, you should try that site.  A file normally
  687.   named "XXX" is split into files XXX-split/part[0-9][0-9], and there will
  688.   be a file named XXX-split/README which contains the list of parts
  689.   (especially helpful when FTP-ing by e-mail), their checksums, and
  690.   reassembly instructions.
  691.  
  692. 92:  What is the difference between Emacs and XEmacs (formerly "Lucid
  693.      Emacs")?
  694.  
  695.   First of all, they're both GNU Emacs.  XEmacs is just as much a later
  696.   version of GNU Emacs 18 as the FSF-distributed version.  This FAQ refers
  697.   to the latest version to be distributed by the FSF as "Emacs," partly
  698.   because the XEmacs maintainers now refer to their product using the
  699.   "XEmacs" name, and partly because there isn't any accurate way to
  700.   differentiate between the two without getting mired in paragraphs of
  701.   legalese and history.
  702.  
  703.   XEmacs, which began life as Lucid Emacs, is based on an early version of
  704.   Emacs 19 and Epoch, an X-aware version of Emacs 18.
  705.  
  706.   Emacs (i.e., the version distributed by the FSF) has a larger installed
  707.   base, while XEmacs can do some clever tricks with X Windows, such as
  708.   putting arbitrary graphics in a buffer.  Emacs and XEmacs each come with
  709.   Lisp packages that are lacking in the other; RMS says that the FSF would
  710.   include more packages that come with XEmacs, but that the XEmacs
  711.   maintainers don't always keep track of the authors of contributed code,
  712.   which makes it impossible for the FSF to have certain legal papers
  713.   signed.  (Without these legal papers, the FSF will not distribute Lisp
  714.   packages with Emacs.)
  715.  
  716.   Many XEmacs features have found their way into recent versions of Emacs,
  717.   and more features can be expected in the future, but there are still many
  718.   differences between the two packages.
  719.  
  720.   The latest version of XEmacs as of this writing is 19.14; you can get it
  721.   at
  722.  
  723.     ftp://ftp.xemacs.org/pub/xemacs/xemacs-19.14.tar.gz
  724.  
  725.   More information about XEmacs, including a list of frequently asked
  726.   questions (FAQ), is available at
  727.  
  728.     http://www.xemacs.org/
  729.  
  730. 93:  Where can I get Emacs for my PC running MS-DOS?
  731.  
  732.   Emacs 19 (versions 19.23 and later) should compile right out of the box
  733.   on PCs with a 386 or better, running MS-DOS 3.0 or later. According to
  734.   Eli Zaretskii <eliz@is.elta.co.il>, you will need the following:
  735.  
  736.   Compiler: djgpp version 1.12 maint 1 or later.  Djgpp 2.0 or later is
  737.             recommended, since 1.x is being phased out.  Djgpp 2 supports
  738.             long filenames under Windows 95.
  739.  
  740.             You can get the latest release of djgpp by retrieving
  741.             all of the files in
  742.  
  743.               ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2/
  744.  
  745.   Gunzip and tar:
  746.  
  747.             The easiest way is to use "djtar" which comes with djgpp v2.0,
  748.             because it can open gzip'ed tarfiles (i.e., those ending with
  749.             ".tar.gz") in one step.  Djtar comes in "djdev200.zip", from
  750.             the URL mentioned above.
  751.  
  752.   Utilities: chmod, make, mv, sed, rm.  
  753.  
  754.             All of these utilities are available at
  755.  
  756.               ftp://ftp.coast.net/SimTel/vendors/gnu/gnuish/dos_only/fut312bx.zip
  757.  
  758.             A port of GNU sed is available at
  759.  
  760.               ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2gnu/sed118b.zip
  761.  
  762.   The file INSTALL in the top-level directory of the Emacs source contains
  763.   some additional information regarding Emacs under MS-DOS.  In addition,
  764.   the file etc/MSDOS contains some information on the differences between
  765.   the Unix and MS-DOS versions of Emacs.
  766.  
  767.   For the most comprehensive information on running GNU Emacs on a PC, see
  768.   the file prepared by Michael Ernst <mernst@theory.lcs.mit.edu> at
  769.  
  770.     ftp://theory.lcs.mit.edu/pub/emacs/pc-emacs.gz
  771.  
  772.   For a list of other MS-DOS implementations of Emacs (and Emacs
  773.   look-alikes), consult the list of "Emacs implementations and literature,"
  774.   available at
  775.  
  776.     ftp://rtfm.mit.edu/pub/usenet/comp.emacs/
  777.  
  778.   Note that while many of these programs look similar to Emacs, they often
  779.   lack certain features, such as the Emacs Lisp extension language.
  780.  
  781. 94:  Where can I get Emacs for Microsoft Windows, Windows '95, or Windows
  782.      NT?
  783.  
  784.   For information on Win32 versions of Emacs, read the FAQ produced by
  785.   Geoff Voelker <voelker@cs.washington.edu>, available at
  786.  
  787.     http://www.cs.washington.edu/homes/voelker/ntemacs.html
  788.  
  789.   For Windows 3.1, see the list of PC Emacs ports mentioned in question 93.
  790.  
  791. 95:  Where can I get Emacs for my PC running OS/2?
  792.  
  793.   Emacs 19.31 is ported for emx on OS/2 2.0 or 2.1, and is available at:
  794.  
  795.     ftp://hobbes.nmsu.edu/os2/unix/emacs31/
  796.  
  797. 96:  Where can I get Emacs for my Atari ST?
  798.  
  799.   Roland Schîuble reports that Emacs 18.58 running on plain TOS and MiNT
  800.   is available at
  801.  
  802.     ftp://atari.archive.umich.edu/Editors/Emacs-18-58/1858b-d3.zoo
  803.  
  804. 97:  Where can I get Emacs for my Amiga?
  805.  
  806.   The files you need are available at
  807.  
  808.     ftp://ftp.wustl.edu/pub/aminet/util/gnu/
  809.  
  810.   David Gilbert <dgilbert@gamiga.guelphnet.dweomer.org> recently announced
  811.   the availability of a beta release of Emacs 19.25 for the Amiga.  You can
  812.   get the binary at
  813.  
  814.     ftp://ftp.wustl.edu/pub/aminet/util/gnu/a2.0bEmacs-bin.LHA
  815.  
  816. 98:  Where can I get Emacs for NeXTSTEP?
  817.  
  818.   Emacs.app is a NeXTSTEP version of Emacs 19.28 which supports colors,
  819.   menus, and multiple frames.  You can get it from
  820.  
  821.     ftp://next-ftp.peak.org/pub/next/binaries/editors/Emacs_for_NeXTstep_4.1.pkg.NIHS.b.tar.gz
  822.  
  823. 99:  Where can I get Emacs for my Apple computer?
  824.  
  825.   An unofficial port of GNU Emacs 18.59 to the Macintosh is available at a
  826.   number of ftp sites, the home being
  827.  
  828.     ftp://ftp.cs.cornell.edu/pub/parmet/Emacs-1.18/
  829.  
  830.   To the best of our knowledge, Emacs 19 has not been ported to the
  831.   Macintosh.
  832.  
  833. 100: Where do I get Emacs that runs on VMS under DECwindows?
  834.  
  835.   Version 19.29 has a VMS directory containing installation instructions, a
  836.   makefile, and various .com files.  But according to Richard Levitte
  837.   <levitte@lp.se>, it does not run out of the box.  Even if it does, the
  838.   VMSNOTES indicates that the Emacs on VMS is going to have much more
  839.   limited functionality.  Richard Levitte has a patched 19.28 that
  840.   supposedly has subprocess and networking functionality just as on Unix,
  841.   with virtually the same Lisp interface.  The source is available at
  842.  
  843.     ftp://vms.gnu.ai.mit.edu/gnu-vms/software/emacs-19_28-********.tar-gz
  844.  
  845.   For more information, see
  846.  
  847.     http://vms.gnu.ai.mit.edu/software/released1/macs.html
  848.  
  849. 101: Where can I get modes for Lex, Yacc/Bison, Bourne shell, Csh, C++,
  850.      Objective-C, Pascal, Java, and Awk?
  851.  
  852.   Most of these modes are now available in standard Emacs distribution.  To
  853.   get additional modes, look in the Lisp Code Directory (see question 88).
  854.   For C++, if you use lisp-dir-apropos, you must specify the pattern like
  855.   this:
  856.  
  857.     M-x lisp-dir-apropos RET c\+\+ RET
  858.  
  859.   Note that Barry Warsaw's cc-mode now works for C, C++, Objective-C, and
  860.   Java code.  You can get the latest version from the Emacs Lisp Archive;
  861.   see question 89 for details.
  862.  
  863. 102: What is the IP address of XXX.YYY.ZZZ?
  864.  
  865.   If you are on a Unix machine, try using the "nslookup" command, included
  866.   in the Berkeley BIND package.  For example, to find the IP address of
  867.   "prep.ai.mit.edu", you would type
  868.  
  869.     nslookup prep.ai.mit.edu
  870.  
  871.   Your computer should then provide the IP address of that computer.
  872.  
  873.   If your site's nameserver is deficient, you can use IP addresses to FTP
  874.   files.  You can get this information by
  875.  
  876.   * E-mail:
  877.  
  878.     To: dns@[134.214.84.25]              (to grasp.insa-lyon.fr)
  879.     Body: ip XXX.YYY.ZZZ                 (or "help" for more information
  880.                                                 and options - no quotes) 
  881.     or:
  882.  
  883.     To: resolve@[147.31.254.130]         (to cs.widener.edu)
  884.     Body: site XXX.YYY.ZZZ
  885.  
  886.