home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / CDROM / FAQs / G++ / part2 < prev    next >
Encoding:
Internet Message Format  |  1996-10-11  |  32.7 KB

  1. Path: informatik.tu-muenchen.de!fu-berlin.de!news.mathworks.com!howland.erols.net!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 2/4
  5. Supersedes: <GNU-Emacs-FAQ-2_842468882@the-tech.mit.edu>
  6. Followup-To: gnu.emacs.help
  7. Date: 10 Oct 1996 20:17:55 GMT
  8. Organization: GNU Emacs FAQ Central
  9. Lines: 835
  10. Approved: news-answers-request@MIT.EDU
  11. Expires: 18 Nov 1996 20:17:53 GMT
  12. Message-ID: <GNU-Emacs-FAQ-2_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:43502 comp.emacs:28837 comp.answers:21580 news.answers:83795
  19.  
  20. Archive-name: GNU-Emacs-FAQ/part2
  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. Status of Emacs
  43.  
  44. 23:  Where does the name "Emacs" come from?
  45.  
  46.   Emacs originally was an acronym for Editor MACroS.  RMS says he "picked
  47.   the name Emacs because `E' was not in use as an abbreviation on ITS at
  48.   the time."  The first Emacs was a set of macros written in 1976 at MIT by
  49.   RMS for the editor TECO (Text Editor and COrrector, originally Tape
  50.   Editor and COrrector) under ITS on a PDP-10.  RMS had already extended
  51.   TECO with a "real-time" full screen mode with active keys.  Emacs was
  52.   started by Guy Steele <gls@east.sun.com> as a project to unify the many
  53.   divergent TECO command sets and key bindings at MIT.
  54.  
  55.   Many people have said that TECO code looks a lot like line noise.  See
  56.   alt.lang.teco if you are interested.  Someone has written a TECO
  57.   implementation in Emacs Lisp (to find it, see question 89); it would be
  58.   an interesting project to run the original TECO Emacs inside of Emacs.
  59.  
  60.   For some not-so-serious alternative reasons for Emacs to have that name,
  61.   check out etc/JOKES (see question 4).
  62.  
  63. 24:  What is the latest version of Emacs?
  64.  
  65.   Emacs 19.34b is the current version as of this writing.
  66.  
  67. 25:  What is different about Emacs 19?
  68.  
  69.   To find out what has changed in recent versions, type C-h n (M-x
  70.   view-emacs-news).  The oldest changes are at the bottom of the file, so
  71.   you might want to read it starting there, rather than at the top.
  72.  
  73.   The most obvious changes have to do with the user interface -- Emacs 19
  74.   is fully X-aware, and provides pull-down menus (see question 63) and
  75.   scroll bars.  Emacs 19 also supports fonts and colors, including
  76.   context-specific highlighting of source code and other types of buffers
  77.   (see question 65).
  78.  
  79.   Other changes include a line number mode, which displays the current line
  80.   number in the mode line, and default bindings for arrow and paging keys
  81.   that work.
  82.  
  83.   Lower-level changes include a smarter memory allocation scheme (Emacs now
  84.   returns memory to the operating system when you kill buffers), a better
  85.   byte-compiler, and a source-level Emacs Lisp debugger.
  86.  
  87.   There are also a number of new Lisp packages, ranging from dunnet (an
  88.   Adventure-like program) to mldrag (allows you to drag the mode line up
  89.   and down with mouse buttons) to gud (Grand Unified Debugger mode, for
  90.   many flavors of debuggers).  A number of older Lisp packages, such as
  91.   Gnus, SuperCite and the calendar/diary, have been updated and enhanced to
  92.   work with Emacs 19, and are now included with the standard distribution.
  93.  
  94.  
  95. Common Things People Want To Do
  96.  
  97. 26:  How do I set up a .emacs file properly?
  98.  
  99.   See "Init File" in the on-line manual.
  100.  
  101.   WARNING: In general, new Emacs users should not have .emacs files,
  102.   because it causes confusing non-standard behavior.  Then they send
  103.   questions to help-gnu-emacs asking why Emacs isn't behaving as
  104.   documented.  :-)
  105.  
  106. 27:  How do I debug a .emacs file?
  107.  
  108.   Start Emacs with the "-debug-init" command-line option.  This enables the
  109.   Emacs Lisp debugger before evaluating your .emacs file, and places you in
  110.   the debugger if something goes wrong.  The top line in the trace-back
  111.   buffer will be the error message, and the second or third line of that
  112.   buffer will display the Lisp code from your .emacs file that caused the
  113.   problem.
  114.  
  115.   You can also evaluate an individual function or argument to a function in
  116.   your .emacs file by moving the cursor to the end of the function or
  117.   argument and typing "C-x C-e" (M-x eval-last-sexp).
  118.  
  119.   Use "C-h v" (M-x describe-variable) to check the value of variables which
  120.   you are trying to set or use.
  121.  
  122. 28:  How do I make Emacs display the current line (or column) number?
  123.  
  124.   To have Emacs automatically display the current line number of the point
  125.   in the mode line, do "M-x line-number-mode".  You can also put the form
  126.  
  127.     (setq line-number-mode t)
  128.  
  129.   in your .emacs file to achieve this whenever you start Emacs.  Note that
  130.   Emacs will not display the line number if the buffer is larger than the
  131.   value of the variable line-number-display-limit.
  132.  
  133.   As of version 19.29, Emacs will automatically display the current column
  134.   in the mode line if you include the "%c" format specifier in the variable
  135.   mode-line-format.  See the documentation for mode-line-format (using "C-h
  136.   v mode-line-format RET") for more information on how to set and use this
  137.   variable.
  138.  
  139.   Users of all Emacs versions can display the current column using Per
  140.   Abrahamsen's <abraham@iesd.auc.dk> "column" package.  See question 89 for
  141.   instructions on how to get it.
  142.  
  143.   None of the vi emulation modes provide the "set number" capability of vi
  144.   (as far as we know).
  145.  
  146. 29:  How do I turn on abbrevs by default just in mode XXX?
  147.  
  148.   Put this in your .emacs file:
  149.  
  150.     (condition-case ()
  151.        (quietly-read-abbrev-file)
  152.       (file-error nil))
  153.  
  154.     (add-hook 'XXX-mode-hook
  155.               (function
  156.                 (lambda ()
  157.                  (setq abbrev-mode t))))
  158.  
  159. 30:  How do I turn on auto-fill mode by default?
  160.  
  161.   To turn on auto-fill mode just once for one buffer, use "M-x
  162.   auto-fill-mode".
  163.  
  164.   To turn it on for every buffer in a certain mode, you must use the hook
  165.   for that mode.  For example, to turn on auto-fill mode for all text
  166.   buffers, including the following in your .emacs file:
  167.  
  168.     (add-hook 'text-mode-hook 'turn-on-auto-fill)
  169.  
  170.   If you want auto-fill mode on in all major modes, do this:
  171.  
  172.     (setq-default auto-fill-hook 'do-auto-fill)
  173.  
  174. 31:  How do I make Emacs use a certain major mode for certain files?
  175.  
  176.   If you want to use XXX mode for all files which end with the extension
  177.   ".YYY", this will do it for you:
  178.  
  179.     (setq auto-mode-alist (cons '("\\.YYY\\'" . XXX-mode) auto-mode-alist))
  180.  
  181.   Otherwise put this somewhere in the first line of any file you want to
  182.   edit in XXX mode (in the second line, if the first line begins with
  183.   "#!"):
  184.  
  185.     -*-XXX-*-
  186.  
  187.   Emacs 19 also includes a new variable, interpreter-mode-alist, that
  188.   specifies which mode to use when loading a shell script.  (Emacs
  189.   determines which interpreter you're using by examining the first line of
  190.   the file.)  This feature only applies when the file name doesn't indicate
  191.   which mode to use.  Use "C-h v" (or M-x describe-variable) on
  192.   interpreter-mode-alist to learn more.
  193.  
  194. 32:  How do I search for, delete, or replace unprintable (8-bit or control)
  195.      characters?
  196.  
  197.   To search for a single character that appears in the buffer as, for
  198.   example, "\237", you can type "C-s C-q 2 3 7".  (This assumes the value
  199.   of search-quote-char is 17 (i.e., `C-q').)  Searching for ALL unprintable
  200.   characters is best done with a regular expression ("regexp") search.  The
  201.   easiest regexp to use for the unprintable chars is the complement of the
  202.   regexp for the printable chars.
  203.  
  204.     Regexp for the printable chars: [\t\n\r\f -~]
  205.     Regexp for the unprintable chars: [^\t\n\r\f -~]
  206.  
  207.   To type these special characters in an interactive argument to
  208.   isearch-forward-regexp or re-search-forward, you need to use C-q.  (`\t',
  209.   `\n', `\r', and `\f' stand respectively for TAB, LFD, RET, and C-l.)  So,
  210.   to search for unprintable characters using re-search-forward:
  211.  
  212.     M-x re-search-forward RET [^ TAB C-q LFD C-q RET C-q C-l SPC -~] RET
  213.  
  214.   Using isearch-forward-regexp:
  215.  
  216.     M-C-s [^ TAB RET C-q RET C-q C-l SPC -~]
  217.  
  218.   To delete all unprintable characters, simply use replace-regexp:
  219.  
  220.     M-x replace-regexp RET [^ TAB C-q LFD C-q RET C-q C-l SPC -~] RET RET
  221.  
  222.   Replacing is similar to the above.  To replace all unprintable characters
  223.   with a colon, use:
  224.  
  225.     M-x replace-regexp RET [^ TAB C-q LFD C-q RET C-q C-l SPC -~] RET : RET
  226.  
  227.   NOTE: * You don't need to quote TAB with either isearch or typing
  228.           something in the minibuffer.
  229.  
  230. 33:  How can I highlight a region of text in Emacs?
  231.  
  232.   If you are using a windowing system such as X, you can cause the region
  233.   to be highlighted when the mark is active by including
  234.  
  235.         (transient-mark-mode t)
  236.  
  237.   in your .emacs file.  (Also see question 65.)
  238.  
  239. 34:  How do I control Emacs's case-sensitivity when searching/replacing?
  240.  
  241.   For searching, the value of the variable case-fold-search determines
  242.   whether they are case sensitive:
  243.  
  244.     (setq case-fold-search nil) ; make searches case sensitive
  245.     (setq case-fold-search t)   ; make searches case insensitive
  246.  
  247.   Similarly, for replacing the variable case-replace determines whether
  248.   replacements preserve case.
  249.  
  250.   To change the case sensitivity just for one major mode, use the major
  251.   mode's hook.  For example:
  252.  
  253.     (add-hook 'XXX-mode-hook
  254.           (function
  255.            (lambda ()
  256.              (setq case-fold-search nil))))
  257.  
  258. 35:  How do I make Emacs wrap words for me?
  259.  
  260.   Use auto-fill mode, activated by typing "M-x auto-fill-mode".  The
  261.   default maximum line width is 70, determined by the variable fill-column.
  262.   To learn how to turn this on automatically, see question 30.
  263.  
  264. 36:  Where can I get a better spelling checker for Emacs?
  265.  
  266.   Use Ispell.  See question 110.
  267.  
  268. 37:  How can I spell-check TeX or *roff documents?
  269.  
  270.   Use Ispell.  See question 110.  Ispell can handle TeX and *roff
  271.   documents.
  272.  
  273. 38:  How do I change load-path?
  274.  
  275.   In general, you should only *add* to the load-path.  You can add
  276.   directory /XXX/YYY to the load path like this:
  277.  
  278.     (setq load-path (cons "/XXX/YYY/" load-path))
  279.  
  280.   To do this relative to your home directory:
  281.  
  282.     (setq load-path (cons "~/YYY/" load-path)
  283.  
  284. 39:  How do I use an already running Emacs from another window?
  285.  
  286.   Emacsclient, which comes with Emacs, is for editing a file using an
  287.   already running Emacs rather than starting up a new Emacs.  It does this
  288.   by sending a request to the already running Emacs, which must be
  289.   expecting the request.
  290.  
  291.   * Setup
  292.  
  293.     Emacs must have executed the "server-start" function for emacsclient to
  294.     work.  This can be done either by a command line option:
  295.  
  296.       emacs -f server-start
  297.  
  298.     or by invoking server-start from the .emacs file:
  299.  
  300.       (if (some conditions are met) (server-start))
  301.  
  302.     When this is done, Emacs starts a subprocess running a program called
  303.     "server".  "server" creates a Unix domain socket in the user's home
  304.     directory named .emacs_server.
  305.  
  306.     To get your news reader, mail reader, etc., to invoke emacsclient, try
  307.     setting the environment variable EDITOR (or sometimes VISUAL) to the
  308.     value "emacsclient".  You may have to specify the full pathname of the
  309.     emacsclient program instead.  Examples:
  310.  
  311.       # csh commands:
  312.       setenv EDITOR emacsclient
  313.       setenv EDITOR /usr/local/emacs/etc/emacsclient  # using full pathname
  314.  
  315.       # sh command:
  316.       EDITOR=emacsclient ; export EDITOR
  317.  
  318.   * Normal use
  319.  
  320.     When emacsclient is run, it connects to the ".emacs_server" socket and
  321.     passes its command line options to "server".  When "server" receives
  322.     these requests, it sends this information on the the Emacs process,
  323.     which at the next opportunity will visit the files specified.  (Line
  324.     numbers can be specified just like with Emacs.)  The user will have to
  325.     switch to the Emacs window by hand.  When the user is done editing a
  326.     file, the user can type "C-x #" (or M-x server-edit) to indicate this.
  327.     If there is another buffer requested by emacsclient, Emacs will switch
  328.     to it; otherwise emacsclient will exit, signaling the calling program
  329.     to continue.
  330.  
  331.     NOTE: "emacsclient" and "server" must be running on machines which
  332.     share the same filesystem for this to work.  The pathnames that
  333.     emacsclient specifies should be correct for the filesystem that the
  334.     Emacs process sees.  The Emacs process should not be suspended at the
  335.     time emacsclient is invoked.  emacsclient should either be invoked from
  336.     another X window or from a shell window inside Emacs itself.
  337.  
  338.     There is an enhanced version of emacsclient/server called "gnuserv" by
  339.     Andy Norman <ange@hplb.hpl.hp.com> which is available in the Emacs Lisp
  340.     Archive (see question 89).  Gnuserv uses Internet domain sockets, so it
  341.     can work across most network connections.  It also supports the
  342.     execution of arbitrary Emacs Lisp forms and does not require the client
  343.     program to wait for completion.
  344.  
  345.     The alpha version of an enhanced version of gnuserv is available at
  346.  
  347.         ftp://ftp.wellfleet.com/netman/psmith/emacs/gnuserv-2.1alpha.tar.gz
  348.  
  349. 40:  How do I make Emacs recognize my compiler's funny error messages?
  350.  
  351.   The variable compilation-error-regexp-alist helps control how Emacs
  352.   parses your compiler output.  It is a list of triples of the form:
  353.  
  354.         (REGEXP FILE-IDX LINE-IDX)
  355.  
  356.   where REGEXP, FILE-IDX and LINE-IDX are strings.  To help determine what
  357.   the constituent elements should be, load compile.el and then use
  358.  
  359.         C-h v compilation-error-regexp-alist RET
  360.  
  361.   to see the current value.  A good idea is to look at compile.el itself as
  362.   the comments included for this variable are quite useful -- the regular
  363.   expressions required for your compiler's output may be very close to one
  364.   already provided.  Once you have determined the proper regexps, use the
  365.   following to inform Emacs of your changes:
  366.  
  367.         (setq compilation-error-regexp-alist
  368.               (cons '(REGEXP FILE-IDX LINE-IDX)
  369.                  compilation-error-regexp-alist))
  370.  
  371. 41:  How do I indent switch statements like this?
  372.  
  373.   Many people want to indent their switch statements like this:
  374.  
  375.     f()
  376.     {
  377.       switch(x) {
  378.         case A:
  379.           x1;
  380.           break;
  381.         case B:
  382.           x2;
  383.           break;
  384.         default:
  385.           x3;
  386.       }
  387.     }
  388.  
  389.   The solution at first appears to be: set c-indent-level to 4 and
  390.   c-label-offset to -2.  However, this will give you an indentation spacing
  391.   of four instead of two.
  392.  
  393.   The solution is to use cc-mode (bundled with Emacs 19, but not the
  394.   default mode) and add the following line:
  395.  
  396.     (c-set-offset 'case-label '+)
  397.  
  398.   There appears to be no way to do this with the old c-mode.
  399.  
  400. 42:  How can I make Emacs automatically scroll horizontally?
  401.  
  402.   Use hscroll.el by Wayne Mesard <wmesard@esd.sgi.com>.  The current
  403.   version of hscroll is 1.5 (November 1993), and should be included in a
  404.   future Emacs distribution.  If you cannot find the package, write to
  405.   Wayne directly.
  406.  
  407.   NOTE: The version at the Emacs Lisp Archive is out of date.  Check the
  408.   version number before installing any copies of hscroll you might find!
  409.  
  410. 43:  How do I make Emacs "typeover" or "overwrite" instead of inserting?
  411.  
  412.   M-x overwrite-mode (a minor mode).  This toggles overwrite-mode on and
  413.   off, so exiting from overwrite-mode is as easy as another M-x
  414.   overwrite-mode.
  415.  
  416.   On some workstations, the "Insert" key toggles overwrite-mode on and off.
  417.  
  418. 44:  How do I stop Emacs from beeping on a terminal?
  419.  
  420.   Martin R. Frank <martin@cc.gatech.edu> writes:
  421.  
  422.     Tell Emacs to use the "visible bell" instead of the audible bell, and
  423.     set the visible bell to nothing.
  424.  
  425.     That is, put the following in your TERMCAP environment variable
  426.     (assuming you have one):
  427.  
  428.       ... :vb=: ...                    
  429.  
  430.     And evaluate the following Lisp form:
  431.  
  432.       (setq visible-bell t)
  433.  
  434. 45:  How do I turn down the bell volume in Emacs running under X Windows?
  435.  
  436.   You can adjust the bell volume and duration for all programs with the
  437.   shell command xset.
  438.  
  439.   Invoking xset without any arguments produces some basic information,
  440.   including the following:
  441.  
  442.     usage:  xset [-display host:dpy] option ...
  443.       To turn bell off:
  444.           -b                b off               b 0
  445.       To set bell volume, pitch and duration:
  446.            b [vol [pitch [dur]]]          b on
  447.  
  448. 46:  How do I tell Emacs to automatically indent a new line to the
  449.      indentation of the previous line?
  450.  
  451.   One solution is Indented Text Mode (M-x indented-text-mode).
  452.  
  453.   If you have auto-fill mode on (see question 30), you can tell Emacs to
  454.   prefix every line with a certain character sequence, the "fill prefix."
  455.   Type the prefix at the beginning of a line, position point after it, and
  456.   then type "C-x ." (set-fill-prefix) to set the fill prefix.  Thereafter,
  457.   auto-filling will automatically put the fill prefix at the beginning of
  458.   new lines, and M-q (fill-paragraph) will maintain any fill prefix when
  459.   refilling the paragraph.
  460.  
  461.   NOTE: If you have paragraphs with different levels of indentation, you
  462.   will have to set the fill prefix to the correct value each time you move
  463.   to a new paragraph.  To avoid this hassle, try one of the many packages
  464.   available from the Emacs Lisp Archive (see question 89.)  Look up "fill"
  465.   and "indent" in the Lisp Code Directory for guidance.
  466.  
  467. 47:  How do I show which parenthesis matches the one I'm looking at?
  468.  
  469.   Emacs 19 comes with paren.el, which (when loaded) will automatically
  470.   highlight matching parentheses whenever point (i.e., the cursor) is
  471.   located over one.  To load paren automatically, include the line
  472.  
  473.     (require 'paren)
  474.  
  475.   in your .emacs file.
  476.  
  477.   Alternatives to paren include:
  478.  
  479.   * If you're looking at a right parenthesis (or brace or bracket) you can
  480.     delete it and reinsert it.  Emacs will blink the cursor on the matching
  481.     parenthesis.
  482.  
  483.   * M-C-f (forward-sexp) and M-C-b (backward-sexp) will skip over one set
  484.     of balanced parentheses, so you can see which parentheses match.  (You
  485.     can train it to skip over balanced brackets and braces at the same time
  486.     by modifying the syntax table.)
  487.  
  488.   * Here is some Emacs Lisp that will make the % key show the matching
  489.     parenthesis, like in vi.  In addition, if the cursor isn't over a
  490.     parenthesis, it simply inserts a % like normal.
  491.  
  492.       ;; By an unknown contributor
  493.  
  494.       (global-set-key "%" 'match-paren)
  495.  
  496.       (defun match-paren (arg)
  497.         "Go to the matching parenthesis if on parenthesis otherwise insert %."
  498.         (interactive "p")
  499.         (cond ((looking-at "\\s\(") (forward-list 1) (backward-char 1))
  500.               ((looking-at "\\s\)") (forward-char 1) (backward-list 1))
  501.               (t (self-insert-command (or arg 1)))))
  502.  
  503. 48:  In C mode, can I show just the lines that will be left after #ifdef
  504.      commands are handled by the compiler?
  505.  
  506.   M-x hide-ifdef-mode.  (This is a minor mode.)  You might also want to try
  507.   cpp.el, available at the Emacs Lisp Archive (see question 89).
  508.  
  509. 49:  Is there an equivalent to the `.' (dot) command of vi?
  510.  
  511.   (`.' is the redo command in vi.  It redoes the last insertion/deletion.)
  512.  
  513.   No, not really, because Emacs doesn't have a special insertion mode.
  514.  
  515.   You can type "C-x ESC ESC" (repeat-complex-command) to reinvoke commands
  516.   that used the minibuffer to get arguments.  In repeat-complex-command you
  517.   can type M-p and M-n to scan through all the different complex commands
  518.   you've typed.
  519.  
  520.   To repeat a set of commands, use keyboard macros.  (See "Keyboard Macros"
  521.   in the on-line manual.)
  522.  
  523.   If you're really desperate for the `.' command, VIPER, which comes with
  524.   Emacs 19, and which appears to support it.  (See question 106.)
  525.  
  526. 50:  What are the valid X resource settings (i.e., stuff in .Xdefaults)?
  527.  
  528.   See Emacs man page, or "Resources X" in the on-line manual.
  529.  
  530.   You can also use a resource editor, such as editres (for X11R5 and
  531.   onwards), to look at the resource names for the menu bar, assuming Emacs
  532.   was compiled with the X toolkit.
  533.  
  534. 51:  How do I execute ("evaluate") a piece of Emacs Lisp code?
  535.  
  536.   There are a number of ways to execute ("evaluate," in Lisp lingo) an
  537.   Emacs Lisp "form":
  538.  
  539.   * If you want it evaluated every time you run Emacs, put it in a file
  540.     named ".emacs" in your home directory.  This is known as your ".emacs
  541.     file," and contains all of your personal customizations.
  542.  
  543.   * You can type the form in the *scratch* buffer, and then type LFD (or
  544.     C-j) after it.  The result of evaluating the form will be inserted in
  545.     the buffer.
  546.  
  547.   * In Emacs-Lisp mode, typing M-C-x evaluates a top-level form before or
  548.     around point.
  549.  
  550.   * Typing "C-x C-e" in any buffer evaluates the Lisp form immediately
  551.     before point and prints its value in the echo area.
  552.  
  553.   * Typing M-: or M-x eval-expression allows you to type a Lisp form
  554.     in the minibuffer which will be evaluated.
  555.  
  556.   * You can use M-x load-file to have Emacs evaluate all the Lisp forms in
  557.     a file.  (To do this from Lisp use the function "load" instead.)
  558.  
  559.   These functions are also useful (see question 16 if you want to learn
  560.   more about them):
  561.  
  562.     load-library, eval-region, eval-current-buffer, require, autoload
  563.  
  564. 52:  How do I change Emacs's idea of the tab character's length?
  565.  
  566.   Set the variable default-tab-width.  For example, to set tab stops every
  567.   10 characters, insert the following in your .emacs file:
  568.  
  569.     (setq default-tab-width 10)
  570.  
  571.   Do not confuse variable tab-width with variable tab-stop-list.  The
  572.   former is used for the display of literal tab characters.  The latter
  573.   controls what characters are inserted when you press the TAB character in
  574.   certain modes.
  575.  
  576. 53:  How do I insert `>' at the beginning of every line?
  577.  
  578.   To do this to an entire buffer, type "M-< M-x replace-regexp RET ^ RET >
  579.   RET".
  580.  
  581.   To do this to a region, use "string-rectangle" ("C-x r t").  Set the mark
  582.   (`C-SPC') at the beginning of the first line you want to prefix, move the
  583.   cursor to last line to be prefixed, and type "C-x r t > RET".  To do this
  584.   for the whole buffer, type "C-x h C-x r t > RET".
  585.  
  586.   If you are trying to prefix a yanked mail message with '>', you might
  587.   want to set the variable mail-yank-prefix.  Better yet, get the SuperCite
  588.   package (see question 104), which provides flexible citation for yanked
  589.   mail and news messages.
  590.  
  591. 54:  How do I insert "_^H" before each character in a region to get an
  592.      underlined paragraph?
  593.  
  594.   M-x underline-region.
  595.  
  596. 55:  How do I repeat a command as many times as possible?
  597.  
  598.   Use "C-x (" and "C-x )" to make a keyboard macro that invokes the command
  599.   and then type "M-0 C-x e".
  600.  
  601.   WARNING: any messages your command prints in the echo area will be
  602.   suppressed.
  603.  
  604. 56:  How do I make Emacs behave like this: when I go up or down, the cursor
  605.      should stay in the same column even if the line is too short?
  606.  
  607.   M-x picture-mode.
  608.  
  609. 57:  How do I tell Emacs to iconify itself?
  610.  
  611.   "C-z" iconifies Emacs when running under X Windows and suspends Emacs
  612.   otherwise.  See "Misc X" in the on-line manual.
  613.  
  614. 58:  How do I use regexps (regular expressions) in Emacs?
  615.  
  616.   See "Regexps" in the on-line manual.
  617.  
  618.   WARNING: The "or" operator is `\|', not `|', and the grouping operators
  619.   are `\(' and `\)'.  Also, the string syntax for a backslash is `\\'.  To
  620.   specify a regular expression like xxx\(foo\|bar\) in a Lisp string, use
  621.  
  622.      "xxx\\(foo\\|bar\\)"
  623.  
  624.   Notice the doubled backslashes!
  625.  
  626.   WARNING: Unlike in Unix grep, sed, etc., a complement character set
  627.   ([^...])  can match a newline character (LFD aka C-j aka \n), unless
  628.   newline is mentioned as one of the characters not to match.
  629.  
  630.   WARNING: The character syntax regexps (e.g., "\sw") are not meaningful
  631.   inside character set regexps (e.g., "[aeiou]").  (This is actually
  632.   typical for regexp syntax.)
  633.  
  634. 59:  How do I perform a replace operation across more than one file?
  635.  
  636.   The "tags" feature of Emacs includes the command tags-query-replace which
  637.   performs a query-replace across all the files mentioned in the TAGS file.
  638.   See "Tags Search" in the on-line manual.
  639.  
  640.   As of Emacs 19.29, Dired mode ("M-x dired RET", or C-x d) supports the
  641.   command dired-do-query-replace, which allows users to replace regular
  642.   expressions in multiple files.
  643.  
  644. 60:  Where is the documentation for "etags"?
  645.  
  646.   The "etags" man page should be in the same place as the "emacs" man page.
  647.  
  648.   Quick command-line switch descriptions are also available.  For example,
  649.   "etags -H".
  650.  
  651. 61:  How do I disable backup files?
  652.  
  653.   You probably don't want to do this, since backups are useful.
  654.  
  655.   To avoid seeing backup files (and other "uninteresting" files) in Dired,
  656.   load dired-x by adding the following to your .emacs file:
  657.  
  658.     (add-hook 'dired-load-hook
  659.               (function (lambda ()
  660.                           (load "dired-x"))))
  661.  
  662.   With dired-x loaded, `M-o' toggles omitting in each dired buffer.  You
  663.   can make omitting the default for new dired buffers by putting the
  664.   following in your .emacs:
  665.  
  666.     (setq initial-dired-omit-files-p t)
  667.  
  668.   If you're tired of seeing backup files whenever you do an "ls" at the
  669.   Unix shell, try GNU ls with the "-B" option.  GNU ls is part of the GNU
  670.   fileutils package, available at prep and its mirrors (see question 91).
  671.  
  672.   To disable or change how backups are made, see "Backup Names" in the
  673.   on-line manual.
  674.  
  675. 62:  How do I disable auto-save-mode?
  676.  
  677.   You probably don't want to do this, since auto-saving is useful,
  678.   especially when Emacs or your computer crashes while you are editing a
  679.   document.
  680.  
  681.   Instead, you might want to change the variable auto-save-interval, which
  682.   specifies how many keystrokes Emacs waits before auto-saving.  Increasing
  683.   this value forces Emacs to wait longer between auto-saves, which might
  684.   annoy you less.
  685.  
  686.   You might also want to look into Sebastian Kremer's auto-save package,
  687.   available from the Lisp Code Archive (see question 89).  This package
  688.   also allows you to place all auto-save files in one directory, such as
  689.   /tmp.
  690.  
  691.   To disable or change how auto-save-mode works, see "Auto Save" in the
  692.   on-line manual.
  693.  
  694. 63:  How can I create or modify new pull-down menu options?
  695.  
  696.   Each menu title (e.g., Buffers, File, Edit) represents a local or global
  697.   keymap.  Selecting a menu title with the mouse displays that keymap's
  698.   non-nil contents in the form of a menu.
  699.  
  700.   So to add a menu option to an existing menu, all you have to do is add a
  701.   new definition to the appropriate keymap.  Adding a "forward word"
  702.   command to the "Edit" menu thus requires the following Lisp code:
  703.  
  704.     (define-key global-map           
  705.       [menu-bar edit forward]        
  706.       '("Forward word" . forward-word))
  707.  
  708.   The first line adds the entry to the global keymap, which includes global
  709.   menu bar entries.  Replacing the reference to "global-map" with a local
  710.   keymap would add this menu option only within a particular mode.
  711.  
  712.   The second line describes the path from the menu-bar to the new entry.
  713.   Placing this menu entry underneath the "File" menu would mean changing
  714.   the word "edit" in the second line to "file."
  715.  
  716.   The third line is a cons cell whose first element is the title that will
  717.   be displayed, and whose second element is the function that will be
  718.   called when that menu option is invoked.
  719.  
  720.   To add a new menu, rather than a new option to an existing menu, we must
  721.   define an entirely new keymap:
  722.  
  723.     (define-key global-map [menu-bar words]
  724.       (cons "Words" (make-sparse-keymap "Words")))
  725.  
  726.   The above code creates a new sparse keymap, gives it the name "Words",
  727.   and attaches it to the global menu bar.  Adding the "forward word"
  728.   command to this new menu would thus require the following code:
  729.  
  730.     (define-key global-map
  731.       [menu-bar words forward]
  732.       '("Forward word" . forward-word))
  733.  
  734.   Note that because of the way keymaps work, menu options are displayed
  735.   with the more recently defined items at the top.  Thus if you were to
  736.   define menu options "foo", "bar", and "baz" (in that order), menu option
  737.   "baz" would appear at the top, and "foo" would be at the bottom.
  738.  
  739.   One way to avoid this problem is to use the function define-key-after,
  740.   which works the same as define-key, but lets you modify where items
  741.   appear.  The following Lisp code would insert the "forward word" function
  742.   in the "edit" menu immediately following the "undo" option:
  743.  
  744.     (define-key-after
  745.       (lookup-key global-map [menu-bar edit])
  746.       [forward]
  747.       '("Forward word" . forward-word)
  748.       'undo)
  749.  
  750.   Note how the second and third arguments to define-key-after are different
  751.   from those of define-key, and that we have added a new (final) argument,
  752.   the function after which our new key should be defined.
  753.  
  754.   To move a menu option from one position to another, simply evaluate
  755.   define-key-after with the appropriate final argument.
  756.  
  757.   More detailed information -- and more examples of how to create and
  758.   modify menu options -- are in the Emacs Lisp Reference Manual, under
  759.   "Keymaps."  (See question 16 for information on this manual.)
  760.  
  761. 64:  How do I delete menus and menu options?
  762.  
  763.   The simplest way to remove a menu is to set its keymap to nil.  For
  764.   example, to delete the "Words" menu (from question 63), use:
  765.  
  766.     (define-key global-map [menu-bar words] nil)
  767.  
  768.   Similarly, removing a menu option requires redefining a keymap entry to
  769.   nil.  For example, to delete the "Forward word" menu option from the
  770.   "Edit" menu (we added it in question 63), use:
  771.  
  772.     (define-key global-map [menu-bar edit forward] nil)
  773.  
  774. 65:  What are hilit19 and font-lock modes, what is the difference between
  775.      them, and how do I customize them?
  776.  
  777.   Hilit19 and font-lock are two minor modes that syntactically highlight
  778.   Emacs buffers using colors and fonts of your choosing.  This is
  779.   especially useful when editing code, since strings can be in one face,
  780.   comments a second color, and function definitions a third.  Both packages
  781.   come with Emacs 19. 
  782.  
  783.   While hilit19 is still included in the Emacs distribution, it has been
  784.   (more or less) replaced by font-lock mode, which increasing numbers of
  785.   Emacs modes now understand.
  786.  
  787.   To turn font-lock mode on within an existing buffer, use "M-x
  788.   font-lock-mode RET".
  789.  
  790.   To automatically invoke font-lock mode when a particular major mode is
  791.   invoked, set the major mode's hook.  For example, to fontify all c-mode
  792.   buffers, add the following to your .emacs file:
  793.  
  794.     (add-hook 'c-mode-hook 'turn-on-font-lock)
  795.  
  796.   To automatically invoke font-lock mode for all major modes, you can turn
  797.   on global-font-lock mode by including the following line in your .emacs
  798.   file:
  799.  
  800.     (global-font-lock-mode t)
  801.  
  802.   To print buffers with the faces (i.e., colors and fonts) intact, use
  803.   "M-x ps-print-buffer-with-faces" or "M-x ps-print-region-with-faces".
  804.  
  805.   For more information on font-lock mode, take a look at the font-lock mode
  806.   FAQ, maintained by Chris Ryder <ryder@eritel.se> at
  807.  
  808.     ftp//cs.uta.fi:/pub/ssjaa/ema-font.gui
  809.  
  810.   Also see the documentatation for the function font-lock-mode, available
  811.   by typing C-h f font-lock-mode ("M-x describe-function RET font-lock-mode
  812.   RET").
  813.  
  814. 66:  How can I force Emacs to scroll only one line when I move past the
  815.      bottom of the screen?
  816.  
  817.   Place the following Lisp form in your .emacs file:
  818.  
  819.     (setq scroll-step 1)
  820.  
  821.   Also see "Scrolling" in the on-line manual.
  822.  
  823. 67:  How can I replace highlighted text with what I type?
  824.  
  825.   Use delete-selection mode, which you can start automatically by placing
  826.   the following Lisp form in your .emacs file:
  827.  
  828.     (delete-selection-mode t)
  829.  
  830.   According to the documentation string for delete-selection mode (which
  831.   you can read using M-x describe-function RET delete-selection-mode RET):
  832.  
  833.     When ON, typed text replaces the selection if the selection is active.
  834.     When OFF, typed text is just inserted at point.
  835.  
  836.   This mode also allows you to delete (not kill) the highlighted region by
  837.   pressing DEL.
  838.  
  839. 68:  How can I edit MS-DOS files using Emacs?
  840.  
  841.   Get crypt++ from the Emacs Lisp Archive (see question 89).  Among other
  842.   things, crypt++ transparently modifies MS-DOS files as they are loaded
  843.   and saved, allowing you to ignore the different conventions that Unix and
  844.   MS-DOS have for delineating the end of a line.
  845.  
  846. 69:  How can I tell Emacs to fill paragraphs with a single space after
  847.      each period?
  848.  
  849.   Ulrich Mueller <ulm@vsnhd1.cern.ch> suggests adding the following two
  850.   lines to your .emacs file:
  851.  
  852.     (setq sentence-end "[.?!][]\"')}]*\\($\\|[ \t]\\)[ \t\n]*")
  853.     (setq sentence-end-double-space nil)
  854.  
  855.