home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / info / emacs-18 (.txt) < prev    next >
GNU Info File  |  1996-09-28  |  47KB  |  795 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.54 from the
  2. input file emacs.texi.
  3. File: emacs,  Node: Terminal Init,  Next: Find Init,  Prev: Init Examples,  Up: Init File
  4. Terminal-specific Initialization
  5. --------------------------------
  6.    Each terminal type can have a Lisp library to be loaded into Emacs
  7. when it is run on that type of terminal.  For a terminal type named
  8. TERMTYPE, the library is called `term/TERMTYPE' and it is found by
  9. searching the directories `load-path' as usual and trying the suffixes
  10. `.elc' and `.el'.  Normally it appears in the subdirectory `term' of
  11. the directory where most Emacs libraries are kept.
  12.    The usual purpose of the terminal-specific library is to map the
  13. escape sequences used by the terminal's function keys onto more
  14. meaningful names, using `function-key-map'.  See the file
  15. `term/lk201.el' for an example of how this is done.  Many function keys
  16. are mapped automatically according to the information in the Termcap
  17. data base; the terminal-specific library needs to map only the function
  18. keys that Termcap does not specify.
  19.    When the terminal type contains a hyphen, only the part of the name
  20. before the first hyphen is significant in choosing the library name.
  21. Thus, terminal types `aaa-48' and `aaa-30-rv' both use the library
  22. `term/aaa'.  The code in the library can use `(getenv "TERM")' to find
  23. the full terminal type name.
  24.    The library's name is constructed by concatenating the value of the
  25. variable `term-file-prefix' and the terminal type.  Your `.emacs' file
  26. can prevent the loading of the terminal-specific library by setting
  27. `term-file-prefix' to `nil'.
  28.    Emacs runs the hook `term-setup-hook' at the end of initialization,
  29. after both your `.emacs' file and any terminal-specific library have
  30. been read in.  Add hook functions to this hook if you wish to override
  31. part of any of the terminal-specific libraries and to define
  32. initializations for terminals that do not have a library.  *Note
  33. Hooks::.
  34. File: emacs,  Node: Find Init,  Prev: Terminal Init,  Up: Init File
  35. How Emacs Finds Your Init File
  36. ------------------------------
  37.    Normally Emacs uses the environment variable `HOME' to find
  38. `.emacs'; that's what `~' means in a file name.  But if you have done
  39. `su', Emacs tries to find your own `.emacs', not that of the user you
  40. are currently pretending to be.  The idea is that you should get your
  41. own editor customizations even if you are running as the super user.
  42.    More precisely, Emacs first determines which user's init file to use.
  43. It gets the user name from the environment variables `LOGNAME' and
  44. `USER'; if neither of those exists, it uses effective user-ID.  If that
  45. user name matches the real user-ID, then Emacs uses `HOME'; otherwise,
  46. it looks up the home directory corresponding to that user name in the
  47. system's data base of users.
  48. File: emacs,  Node: Quitting,  Next: Lossage,  Prev: Customization,  Up: Top
  49. Quitting and Aborting
  50. =====================
  51. `C-g'
  52.      Quit.  Cancel running or partially typed command.
  53. `C-]'
  54.      Abort innermost recursive editing level and cancel the command
  55.      which invoked it (`abort-recursive-edit').
  56. `M-x top-level'
  57.      Abort all recursive editing levels that are currently executing.
  58. `C-x u'
  59.      Cancel a previously made change in the buffer contents (`undo').
  60.    There are two ways of canceling commands which are not finished
  61. executing: "quitting" with `C-g', and "aborting" with `C-]' or `M-x
  62. top-level'.  Quitting cancels a partially typed command or one which is
  63. already running.  Aborting exits a recursive editing level and cancels
  64. the command that invoked the recursive edit.  (*Note Recursive Edit::.)
  65.    Quitting with `C-g' is used for getting rid of a partially typed
  66. command, or a numeric argument that you don't want.  It also stops a
  67. running command in the middle in a relatively safe way, so you can use
  68. it if you accidentally give a command which takes a long time.  In
  69. particular, it is safe to quit out of killing; either your text will
  70. *all* still be in the buffer, or it will *all* be in the kill ring (or
  71. maybe both).  Quitting an incremental search does special things
  72. documented under searching; in general, it may take two successive
  73. `C-g' characters to get out of a search (*note Incremental Search::.).
  74.    `C-g' works by setting the variable `quit-flag' to `t' the instant
  75. `C-g' is typed; Emacs Lisp checks this variable frequently and quits if
  76. it is non-`nil'.  `C-g' is only actually executed as a command if you
  77. type it while Emacs is waiting for input.
  78.    If you quit with `C-g' a second time before the first `C-g' is
  79. recognized, you activate the "emergency escape" feature and return to
  80. the shell.  *Note Emergency Escape::.
  81.    There may be times when you cannot quit.  When Emacs is waiting for
  82. the operating system to do something, quitting is impossible unless
  83. special pains are taken for the particular system call within Emacs
  84. where the waiting occurs.  We have done this for the system calls that
  85. users are likely to want to quit from, but it's possible you will find
  86. another.  In one very common case--waiting for file input or output
  87. using NFS--Emacs itself knows how to quit, but most NFS implementations
  88. simply do not allow user programs to stop waiting for NFS when the NFS
  89. server is hung.
  90.    Aborting with `C-]' (`abort-recursive-edit') is used to get out of a
  91. recursive editing level and cancel the command which invoked it.
  92. Quitting with `C-g' does not do this, and could not do this, because it
  93. is used to cancel a partially typed command *within* the recursive
  94. editing level.  Both operations are useful.  For example, if you are in
  95. a recursive edit and type `C-u 8' to enter a numeric argument, you can
  96. cancel that argument with `C-g' and remain in the recursive edit.
  97.    The command `M-x top-level' is equivalent to "enough" `C-]' commands
  98. to get you out of all the levels of recursive edits that you are in.
  99. `C-]' gets you out one level at a time, but `M-x top-level' goes out
  100. all levels at once.  Both `C-]' and `M-x top-level' are like all other
  101. commands, and unlike `C-g', in that they take effect only when Emacs is
  102. ready for a command.  `C-]' is an ordinary key and has its meaning only
  103. because of its binding in the keymap.  *Note Recursive Edit::.
  104.    `C-x u' (`undo') is not strictly speaking a way of canceling a
  105. command, but you can think of it as canceling a command that already
  106. finished executing.  *Note Undo::.
  107. File: emacs,  Node: Lossage,  Next: Bugs,  Prev: Quitting,  Up: Top
  108. Dealing with Emacs Trouble
  109. ==========================
  110.    This section describes various conditions in which Emacs fails to
  111. work normally, and how to recognize them and correct them.
  112. * Menu:
  113. * DEL Gets Help::       What to do if DEL doesn't delete.
  114. * Stuck Recursive::     `[...]' in mode line around the parentheses.
  115. * Screen Garbled::      Garbage on the screen.
  116. * Text Garbled::        Garbage in the text.
  117. * Unasked-for Search::  Spontaneous entry to incremental search.
  118. * Emergency Escape::    Emergency escape--
  119.                           What to do if Emacs stops responding.
  120. * Total Frustration::   When you are at your wits' end.
  121. File: emacs,  Node: DEL Gets Help,  Next: Stuck Recursive,  Up: Lossage
  122. If DEL Fails to Delete
  123. ----------------------
  124.    If you find that DEL enters Help like `Control-h' instead of
  125. deleting a character, your terminal is sending the wrong code for DEL.
  126. You can work around this problem by changing the keyboard translation
  127. table (*note Keyboard Translations::.).
  128. File: emacs,  Node: Stuck Recursive,  Next: Screen Garbled,  Prev: DEL Gets Help,  Up: Lossage
  129. Recursive Editing Levels
  130. ------------------------
  131.    Recursive editing levels are important and useful features of Emacs,
  132. but they can seem like malfunctions to the user who does not understand
  133. them.
  134.    If the mode line has square brackets `[...]' around the parentheses
  135. that contain the names of the major and minor modes, you have entered a
  136. recursive editing level.  If you did not do this on purpose, or if you
  137. don't understand what that means, you should just get out of the
  138. recursive editing level.  To do so, type `M-x top-level'.  This is
  139. called getting back to top level.  *Note Recursive Edit::.
  140. File: emacs,  Node: Screen Garbled,  Next: Text Garbled,  Prev: Stuck Recursive,  Up: Lossage
  141. Garbage on the Screen
  142. ---------------------
  143.    If the data on the screen looks wrong, the first thing to do is see
  144. whether the text is really wrong.  Type `C-l', to redisplay the entire
  145. screen.  If the screen appears correct after this, the problem was
  146. entirely in the previous screen update.  (Otherwise, see *Note Text
  147. Garbled::.)
  148.    Display updating problems often result from an incorrect termcap
  149. entry for the terminal you are using.  The file `etc/TERMS' in the Emacs
  150. distribution gives the fixes for known problems of this sort.
  151. `INSTALL' contains general advice for these problems in one of its
  152. sections.  Very likely there is simply insufficient padding for certain
  153. display operations.  To investigate the possibility that you have this
  154. sort of problem, try Emacs on another terminal made by a different
  155. manufacturer.  If problems happen frequently on one kind of terminal
  156. but not another kind, it is likely to be a bad termcap entry, though it
  157. could also be due to a bug in Emacs that appears for terminals that
  158. have or that lack specific features.
  159. File: emacs,  Node: Text Garbled,  Next: Unasked-for Search,  Prev: Screen Garbled,  Up: Lossage
  160. Garbage in the Text
  161. -------------------
  162.    If `C-l' shows that the text is wrong, try undoing the changes to it
  163. using `C-x u' until it gets back to a state you consider correct.  Also
  164. try `C-h l' to find out what command you typed to produce the observed
  165. results.
  166.    If a large portion of text appears to be missing at the beginning or
  167. end of the buffer, check for the word `Narrow' in the mode line.  If it
  168. appears, the text you don't see is probably still present, but
  169. temporarily off-limits.  To make it accessible again, type `C-x n w'.
  170. *Note Narrowing::.
  171. File: emacs,  Node: Unasked-for Search,  Next: Emergency Escape,  Prev: Text Garbled,  Up: Lossage
  172. Spontaneous Entry to Incremental Search
  173. ---------------------------------------
  174.    If Emacs spontaneously displays `I-search:' at the bottom of the
  175. screen, it means that the terminal is sending `C-s' and `C-q' according
  176. to the poorly designed xon/xoff "flow control" protocol.
  177.    If this happens to you, your best recourse is to put the terminal in
  178. a mode where it will not use flow control, or give it so much padding
  179. that it will never send a `C-s'.  (One way to increase the amount of
  180. padding is to set the variable `baud-rate' to a larger value.  Its
  181. value is the terminal output speed, measured in the conventional units
  182. of baud.)
  183.    If you don't succeed in turning off flow control, the next best thing
  184. is to tell Emacs to cope with it.  To do this, call the function
  185. `enable-flow-control'.
  186.    Typically there are particular terminal types with which you must use
  187. flow control.  You can conveniently ask for flow control on those
  188. terminal types only, using `enable-flow-control-on'.  For example, if
  189. you find you must use flow control on VT-100 and H19 terminals, put the
  190. following in your `.emacs' file:
  191.      (enable-flow-control-on "vt100" "h19")
  192.    When flow control is enabled, you must type `C-\' to get the effect
  193. of a `C-s', and type `C-^' to get the effect of a `C-q'.  (These
  194. aliases work by means of keyboard translations; see *Note Keyboard
  195. Translations::.)
  196. File: emacs,  Node: Emergency Escape,  Next: Total Frustration,  Prev: Unasked-for Search,  Up: Lossage
  197. Emergency Escape
  198. ----------------
  199.    Because at times there have been bugs causing Emacs to loop without
  200. checking `quit-flag', a special feature causes Emacs to be suspended
  201. immediately if you type a second `C-g' while the flag is already set,
  202. so you can always get out of GNU Emacs.  Normally Emacs recognizes and
  203. clears `quit-flag' (and quits!) quickly enough to prevent this from
  204. happening.
  205.    When you resume Emacs after a suspension caused by multiple `C-g', it
  206. asks two questions before going back to what it had been doing:
  207.      Auto-save? (y or n)
  208.      Abort (and dump core)? (y or n)
  209. Answer each one with `y' or `n' followed by RET.
  210.    Saying `y' to `Auto-save?' causes immediate auto-saving of all
  211. modified buffers in which auto-saving is enabled.
  212.    Saying `y' to `Abort (and dump core)?' causes an illegal instruction
  213. to be executed, dumping core.  This is to enable a wizard to figure out
  214. why Emacs was failing to quit in the first place.  Execution does not
  215. continue after a core dump.  If you answer `n', execution does
  216. continue.  With luck, GNU Emacs will ultimately check `quit-flag' and
  217. quit normally.  If not, and you type another `C-g', it is suspended
  218. again.
  219.    If Emacs is not really hung, just slow, you may invoke the double
  220. `C-g' feature without really meaning to.  Then just resume and answer
  221. `n' to both questions, and you will arrive at your former state.
  222. Presumably the quit you requested will happen soon.
  223.    The double-`C-g' feature is turned off when Emacs is running under
  224. the X Window System, since you can use the window manager to kill Emacs
  225. or to create another window and run another program.
  226. File: emacs,  Node: Total Frustration,  Prev: Emergency Escape,  Up: Lossage
  227. Help for Total Frustration
  228. --------------------------
  229.    If using Emacs (or something else) becomes terribly frustrating and
  230. none of the techniques described above solve the problem, Emacs can
  231. still help you.
  232.    First, if the Emacs you are using is not responding to commands, type
  233. `C-g C-g' to get out of it and then start a new one.
  234.    Second, type `M-x doctor RET'.
  235.    The doctor will help you feel better.  Each time you say something to
  236. the doctor, you must end it by typing RET RET.  This lets the doctor
  237. know you are finished.
  238. File: emacs,  Node: Bugs,  Next: Service,  Prev: Lossage,  Up: Top
  239. Reporting Bugs
  240. ==============
  241.    Sometimes you will encounter a bug in Emacs.  Although we cannot
  242. promise we can or will fix the bug, and we might not even agree that it
  243. is a bug, we want to hear about problems you encounter.  Often we agree
  244. they are bugs and want to fix them.
  245.    To make it possible for us to fix a bug, you must report it.  In
  246. order to do so effectively, you must know when and how to do it.
  247. * Menu:
  248. * Criteria:  Bug Criteria.     Have you really found a bug?
  249. * Understanding Bug Reporting::     How to report a bug effectively.
  250. * Checklist::             Steps to follow for a good bug report.
  251. * Sending Patches::         How to send a patch for GNU Emacs.
  252. File: emacs,  Node: Bug Criteria,  Next: Understanding Bug Reporting,  Up: Bugs
  253. When Is There a Bug
  254. -------------------
  255.    If Emacs executes an illegal instruction, or dies with an operating
  256. system error message that indicates a problem in the program (as
  257. opposed to something like "disk full"), then it is certainly a bug.
  258.    If Emacs updates the display in a way that does not correspond to
  259. what is in the buffer, then it is certainly a bug.  If a command seems
  260. to do the wrong thing but the problem corrects itself if you type
  261. `C-l', it is a case of incorrect display updating.
  262.    Taking forever to complete a command can be a bug, but you must make
  263. certain that it was really Emacs's fault.  Some commands simply take a
  264. long time.  Type `C-g' and then `C-h l' to see whether the input Emacs
  265. received was what you intended to type; if the input was such that you
  266. *know* it should have been processed quickly, report a bug.  If you
  267. don't know whether the command should take a long time, find out by
  268. looking in the manual or by asking for assistance.
  269.    If a command you are familiar with causes an Emacs error message in a
  270. case where its usual definition ought to be reasonable, it is probably a
  271.    If a command does the wrong thing, that is a bug.  But be sure you
  272. know for certain what it ought to have done.  If you aren't familiar
  273. with the command, or don't know for certain how the command is supposed
  274. to work, then it might actually be working right.  Rather than jumping
  275. to conclusions, show the problem to someone who knows for certain.
  276.    Finally, a command's intended definition may not be best for editing
  277. with.  This is a very important sort of problem, but it is also a
  278. matter of judgment.  Also, it is easy to come to such a conclusion out
  279. of ignorance of some of the existing features.  It is probably best not
  280. to complain about such a problem until you have checked the
  281. documentation in the usual ways, feel confident that you understand it,
  282. and know for certain that what you want is not available.  If you are
  283. not sure what the command is supposed to do after a careful reading of
  284. the manual, check the index and glossary for any terms that may be
  285. unclear.
  286.    If after careful rereading of the manual you still do not understand
  287. what the command should do, that indicates a bug in the manual, which
  288. you should report.  The manual's job is to make everything clear to
  289. people who are not Emacs experts--including you.  It is just as
  290. important to report documentation bugs as program bugs.
  291.    If the on-line documentation string of a function or variable
  292. disagrees with the manual, one of them must be wrong; that is a bug.
  293. File: emacs,  Node: Understanding Bug Reporting,  Next: Checklist,  Prev: Bug Criteria,  Up: Bugs
  294. Understanding Bug Reporting
  295. ---------------------------
  296.    When you decide that there is a bug, it is important to report it
  297. and to report it in a way which is useful.  What is most useful is an
  298. exact description of what commands you type, starting with the shell
  299. command to run Emacs, until the problem happens.
  300.    The most important principle in reporting a bug is to report *facts*,
  301. not hypotheses or categorizations.  It is always easier to report the
  302. facts, but people seem to prefer to strain to posit explanations and
  303. report them instead.  If the explanations are based on guesses about
  304. how Emacs is implemented, they will be useless; we will have to try to
  305. figure out what the facts must have been to lead to such speculations.
  306. Sometimes this is impossible.  But in any case, it is unnecessary work
  307. for us.
  308.    For example, suppose that you type `C-x C-f /glorp/baz.ugh RET',
  309. visiting a file which (you know) happens to be rather large, and Emacs
  310. prints out `I feel pretty today'.  The best way to report the bug is
  311. with a sentence like the preceding one, because it gives all the facts
  312. and nothing but the facts.
  313.    Do not assume that the problem is due to the size of the file and
  314. say, "When I visit a large file, Emacs prints out `I feel pretty
  315. today'." This is what we mean by "guessing explanations".  The problem
  316. is just as likely to be due to the fact that there is a `z' in the file
  317. name.  If this is so, then when we got your report, we would try out
  318. the problem with some "large file", probably with no `z' in its name,
  319. and not find anything wrong.  There is no way in the world that we
  320. could guess that we should try visiting a file with a `z' in its name.
  321.    Alternatively, the problem might be due to the fact that the file
  322. starts with exactly 25 spaces.  For this reason, you should make sure
  323. that you inform us of the exact contents of any file that is needed to
  324. reproduce the bug.  What if the problem only occurs when you have typed
  325. the `C-x C-a' command previously?  This is why we ask you to give the
  326. exact sequence of characters you typed since starting the Emacs session.
  327.    You should not even say "visit a file" instead of `C-x C-f' unless
  328. you *know* that it makes no difference which visiting command is used.
  329. Similarly, rather than saying "if I have three characters on the line,"
  330. say "after I type `RET A B C RET C-p'," if that is the way you entered
  331. the text.
  332. File: emacs,  Node: Checklist,  Next: Sending Patches,  Prev: Understanding Bug Reporting,  Up: Bugs
  333. Checklist for Bug Reports
  334. -------------------------
  335.    The best way to send a bug report is to mail it electronically to the
  336. Emacs maintainers at `bug-gnu-emacs@prep.ai.mit.edu'.  (If you want to
  337. suggest a change as an improvement, use the same address.)
  338.    If you'd like to read the bug reports, you can find them on the
  339. newsgroup `gnu.emacs.bug'; keep in mind, however, that as a spectator
  340. you should not criticize anything about what you see there.  The
  341. purpose of bug reports is to give information to the Emacs maintainers.
  342. Spectators are welcome only as long as they do not interfere with
  343. this.  In particular, some bug reports contain large amounts of data;
  344. spectators should not complain about this.
  345.    Please do not post bug reports using netnews; mail is more reliable
  346. than netnews about reporting your correct address, which we may need in
  347. order to ask you for more information.
  348.    If you can't send electronic mail, then mail the bug report on paper
  349. or machine-readable media to this address:
  350. GNU Emacs Bugs
  351. Free Software Foundation
  352. 675 Mass Ave
  353. Cambridge, MA 02139
  354.    We do not promise to fix the bug; but if the bug is serious, or
  355. ugly, or easy to fix, chances are we will want to.
  356.    To enable maintainers to investigate a bug, your report should
  357. include all these things:
  358.    * The version number of Emacs.  Without this, we won't know whether
  359.      there is any point in looking for the bug in the current version
  360.      of GNU Emacs.
  361.      You can get the version number by typing `M-x emacs-version RET'.
  362.      If that command does not work, you probably have something other
  363.      than GNU Emacs, so you will have to report the bug somewhere else.
  364.    * The type of machine you are using, and the operating system name
  365.      and version number.
  366.    * The operands you gave to the `configure' command when you installed
  367.      Emacs.
  368.    * A complete list of any modifications you have made to the Emacs
  369.      source.  (We may not have time to investigate the bug unless it
  370.      happens in an unmodified Emacs.  But if you've made modifications
  371.      and you don't tell us, you are sending us on a wild goose chase.)
  372.      Be precise about these changes.  A description in English is not
  373.      enough--send a context diff for them.
  374.      Adding files of your own (such as a machine description for a
  375.      machine we don't support) is a modification of the source.
  376.    * Details of any other deviations from the standard procedure for
  377.      installing GNU Emacs.
  378.    * The complete text of any files needed to reproduce the bug.
  379.      If you can tell us a way to cause the problem without visiting any
  380.      files, please do so.  This makes it much easier to debug.  If you
  381.      do need files, make sure you arrange for us to see their exact
  382.      contents.  For example, it can often matter whether there are
  383.      spaces at the ends of lines, or a newline after the last line in
  384.      the buffer (nothing ought to care whether the last line is
  385.      terminated, but try telling the bugs that).
  386.    * The precise commands we need to type to reproduce the bug.
  387.      The easy way to record the input to Emacs precisely is to to write
  388.      a dribble file.  To start the file, execute the Lisp expression
  389.           (open-dribble-file "~/dribble")
  390.      using `M-ESC' or from the `*scratch*' buffer just after starting
  391.      Emacs.  From then on, Emacs copies all your input to the specified
  392.      dribble file until the Emacs process is killed.
  393.    * For possible display bugs, the terminal type (the value of
  394.      environment variable `TERM'), the complete termcap entry for the
  395.      terminal from `/etc/termcap' (since that file is not identical on
  396.      all machines), and the output that Emacs actually sent to the
  397.      terminal.
  398.      The way to collect the terminal output is to execute the Lisp
  399.      expression
  400.           (open-termscript "~/termscript")
  401.      using `M-ESC' or from the `*scratch*' buffer just after starting
  402.      Emacs.  From then on, Emacs copies all terminal output to the
  403.      specified termscript file as well, until the Emacs process is
  404.      killed.  If the problem happens when Emacs starts up, put this
  405.      expression into your `.emacs' file so that the termscript file
  406.      will be open when Emacs displays the screen for the first time.
  407.      Be warned: it is often difficult, and sometimes impossible, to fix
  408.      a terminal-dependent bug without access to a terminal of the type
  409.      that stimulates the bug.
  410.    * A description of what behavior you observe that you believe is
  411.      incorrect.  For example, "The Emacs process gets a fatal signal,"
  412.      or, "The resulting text is as follows, which I think is wrong."
  413.      Of course, if the bug is that Emacs gets a fatal signal, then one
  414.      can't miss it.  But if the bug is incorrect text, the maintainer
  415.      might fail to notice what is wrong.  Why leave it to chance?
  416.      Even if the problem you experience is a fatal signal, you should
  417.      still say so explicitly.  Suppose something strange is going on,
  418.      such as, your copy of the source is out of sync, or you have
  419.      encountered a bug in the C library on your system.  (This has
  420.      happened!)  Your copy might crash and the copy here might not.  If
  421.      you *said* to expect a crash, then when Emacs here fails to crash,
  422.      we would know that the bug was not happening.  If you don't say to
  423.      expect a crash, then we would not know whether the bug was
  424.      happening--we would not be able to draw any conclusion from our
  425.      observations.
  426.      If the manifestation of the bug is an Emacs error message, it is
  427.      important to report not just the text of the error message but a
  428.      backtrace showing how the Lisp program in Emacs arrived at the
  429.      error.  To make the backtrace, execute the Lisp expression `(setq
  430.      debug-on-error t)' before the error happens (that is to say, you
  431.      must execute that expression and then make the bug happen).  This
  432.      causes the Lisp debugger to run, showing you a backtrace.  Copy
  433.      the text of the debugger's backtrace into the bug report.
  434.      This use of the debugger is possible only if you know how to make
  435.      the bug happen again.  Do note the error message the first time
  436.      the bug happens, so if you can't make it happen again, you can
  437.      report at least the error message.
  438.    * Check whether any programs you have loaded into the Lisp world,
  439.      including your `.emacs' file, set any variables that may affect the
  440.      functioning of Emacs.  Also, see whether the problem happens in a
  441.      freshly started Emacs without loading your `.emacs' file (start
  442.      Emacs with the `-q' switch to prevent loading the init file.)  If
  443.      the problem does *not* occur then, you must report the precise
  444.      contents of any programs that you must load into the Lisp world in
  445.      order to cause the problem to occur.
  446.    * If the problem does depend on an init file or other Lisp programs
  447.      that are not part of the standard Emacs system, then you should
  448.      make sure it is not a bug in those programs by complaining to
  449.      their maintainers first.  After they verify that they are using
  450.      Emacs in a way that is supposed to work, they should report the
  451.      bug.
  452.    * If you wish to mention something in the GNU Emacs source, show the
  453.      line of code with a few lines of context.  Don't just give a line
  454.      number.
  455.      The line numbers in the development sources don't match those in
  456.      your sources.  It would take extra work for the maintainers to
  457.      determine what code is in your version at a given line number, and
  458.      we could not be certain.
  459.    * Additional information from a C debugger such as GDB might enable
  460.      someone to find a problem on a machine which he does not have
  461.      available.  However, you need to think when you collect this
  462.      information if you want it to be useful.
  463.      For example, many people send just a backtrace, but that is not
  464.      very useful by itself.  A simple backtrace with arguments often
  465.      conveys little about what is happening inside GNU Emacs, because
  466.      most of the arguments listed in the backtrace are pointers to Lisp
  467.      objects.  The numeric values of these pointers have no
  468.      significance whatever; all that matters is the contents of the
  469.      objects they point to (and most of the contents are themselves
  470.      pointers).
  471.      To provide useful information, you need to show the values of Lisp
  472.      objects in Lisp notation.  Do this for each variable which is a
  473.      Lisp object, in several stack frames near the bottom of the stack.
  474.      Look at the source to see which variables are Lisp objects,
  475.      because the debugger thinks of them as integers.
  476.      To show a variable's value in Lisp syntax, first print its value,
  477.      then use the user-defined GDB command `pr' to print the Lisp
  478.      object in Lisp syntax.  (If you must use another debugger, call
  479.      the function `debug_print' with the object as an argument.)  The
  480.      `pr' command is defined by the file `src/.gdbinit' in the Emacs
  481.      distribution, and it works only if you are debugging a running
  482.      process (not with a core dump).
  483.      To make Lisp errors stop Emacs and return to GDB, put a breakpoint
  484.      at `Fsignal'.
  485.      To find out which Lisp functions are running, using GDB, move up
  486.      the stack, and each time you get to a frame for the function
  487.      `Ffuncall', type these GDB commands:
  488.           p *args
  489.           pr
  490.      To print the first argument that the function received, use these
  491.      commands:
  492.           p args[1]
  493.           pr
  494.      You can print the other arguments likewise.  The argument `nargs'
  495.      of `Ffuncall' says how many arguments `Ffuncall' received; these
  496.      include the Lisp function itself and the arguments for that
  497.      function.
  498.    Here are some things that are not necessary in a bug report:
  499.    * A description of the envelope of the bug--this is not necessary
  500.      for a reproducible bug.
  501.      Often people who encounter a bug spend a lot of time investigating
  502.      which changes to the input file will make the bug go away and which
  503.      changes will not affect it.
  504.      This is often time consuming and not very useful, because the way
  505.      we will find the bug is by running a single example under the
  506.      debugger with breakpoints, not by pure deduction from a series of
  507.      examples.  You might as well save time by not searching for
  508.      additional examples.
  509.      Of course, if you can find a simpler example to report *instead* of
  510.      the original one, that is a convenience.  Errors in the output
  511.      will be easier to spot, running under the debugger will take less
  512.      time, etc.
  513.      However, simplification is not vital; if you can't do this or
  514.      don't have time to try, please report the bug with your original
  515.      test case.
  516.    * A system call trace of Emacs execution.
  517.      System call traces are very useful for certain special kinds of
  518.      debugging, but in most cases they give little useful information.
  519.      It is therefore strange that many people seem to think that *the*
  520.      way to report information about a crash is to send a system call
  521.      trace.
  522.      In most programs, a backtrace is normally far, far more
  523.      informative than a system call trace.  Even in Emacs, a simple
  524.      backtrace is generally more informative, though to give full
  525.      information you should supplement the backtrace by displaying
  526.      variable values and printing them as Lisp objects with `pr' (see
  527.      above).
  528.    * A patch for the bug.
  529.      A patch for the bug is useful if it is a good one.  But don't omit
  530.      the other information that a bug report needs, such as the test
  531.      case, on the assumption that a patch is sufficient.  We might see
  532.      problems with your patch and decide to fix the problem another
  533.      way, or we might not understand it at all.  And if we can't
  534.      understand what bug you are trying to fix, or why your patch
  535.      should be an improvement, we mustn't install it.
  536.      *Note Sending Patches::, for guidelines on how to make it easy for
  537.      us to understand and install your patches.
  538.    * A guess about what the bug is or what it depends on.
  539.      Such guesses are usually wrong.  Even experts can't guess right
  540.      about such things without first using the debugger to find the
  541.      facts.
  542. File: emacs,  Node: Sending Patches,  Prev: Checklist,  Up: Bugs
  543. Sending Patches for GNU Emacs
  544. -----------------------------
  545.    If you would like to write bug fixes or improvements for GNU Emacs,
  546. that is very helpful.  When you send your changes, please follow these
  547. guidelines to make it easy for the maintainers to use them.  If you
  548. don't follow these guidelines, your information might still be useful,
  549. but using it will take extra work.  Maintaining GNU Emacs is a lot of
  550. work in the best of circumstances, and we can't keep up unless you do
  551. your best to help.
  552.    * Send an explanation with your changes of what problem they fix or
  553.      what improvement they bring about.  For a bug fix, just include a
  554.      copy of the bug report, and explain why the change fixes the bug.
  555.      (Referring to a bug report is not as good as including it, because
  556.      then we will have to look it up, and we have probably already
  557.      deleted it if we've already fixed the bug.)
  558.    * Always include a proper bug report for the problem you think you
  559.      have fixed.  We need to convince ourselves that the change is
  560.      right before installing it.  Even if it is correct, we might have
  561.      trouble understanding it if we don't have a way to reproduce the
  562.      problem.
  563.    * Include all the comments that are appropriate to help people
  564.      reading the source in the future understand why this change was
  565.      needed.
  566.    * Don't mix together changes made for different reasons.  Send them
  567.      *individually*.
  568.      If you make two changes for separate reasons, then we might not
  569.      want to install them both.  We might want to install just one.  If
  570.      you send them all jumbled together in a single set of diffs, we
  571.      have to do extra work to disentangle them--to figure out which
  572.      parts of the change serve which purpose.  If we don't have time
  573.      for this, we might have to ignore your changes entirely.
  574.      If you send each change as soon as you have written it, with its
  575.      own explanation, then two changes never get tangled up, and we can
  576.      consider each one properly without any extra work to disentangle
  577.      them.
  578.    * Send each change as soon as that change is finished.  Sometimes
  579.      people think they are helping us by accumulating many changes to
  580.      send them all together.  As explained above, this is absolutely
  581.      the worst thing you could do.
  582.      Since you should send each change separately, you might as well
  583.      send it right away.  That gives us the option of installing it
  584.      immediately if it is important.
  585.    * Use `diff -c' to make your diffs.  Diffs without context are hard
  586.      to install reliably.  More than that, they are hard to study; we
  587.      must always study a patch to decide whether we want to install it.
  588.      Unidiff format is better than contextless diffs, but not as easy
  589.      to read as `-c' format.
  590.      If you have GNU diff, use `diff -c -F'^[_a-zA-Z0-9$]+ *('' when
  591.      making diffs of C code.  This shows the name of the function that
  592.      each change occurs in.
  593.    * Write the change log entries for your changes.  This is both to
  594.      save us the extra work of writing them, and to help explain your
  595.      changes so we can understand them.
  596.      The purpose of the change log is to show people where to find what
  597.      was changed.  So you need to be specific about what functions you
  598.      changed; in large functions, it's often helpful to indicate where
  599.      within the function the change was.
  600.      On the other hand, once you have shown people where to find the
  601.      change, you need not explain its purpose in the change log.  Thus,
  602.      if you add a new function, all you need to say about it is that it
  603.      is new.  If you feel that the purpose needs explaining, it
  604.      probably does--but put the explanation in comments in the code.
  605.      It will be more useful there.
  606.      Please read the `ChangeLog' files in the `src' and `lisp'
  607.      directories to see what sorts of information to put in, and to
  608.      learn the style that we use.  If you would like your name to
  609.      appear in the header line, showing who made the change, send us
  610.      the header line.  *Note Change Log::.
  611.    * When you write the fix, keep in mind that we can't install a
  612.      change that would break other systems.  Please think about what
  613.      effect your change will have if compiled on another type of system.
  614.      Sometimes people send fixes that *might* be an improvement in
  615.      general--but it is hard to be sure of this.  It's hard to install
  616.      such changes because we have to study them very carefully.  Of
  617.      course, a good explanation of the reasoning by which you concluded
  618.      the change was correct can help convince us.
  619.      The safest changes are changes to the configuration files for a
  620.      particular machine.  These are safe because they can't create new
  621.      bugs on other machines.
  622.      Please help us keep up with the workload by designing the patch in
  623.      a form that is clearly safe to install.
  624. File: emacs,  Node: Service,  Next: Command Arguments,  Prev: Bugs,  Up: Top
  625. How To Get Help with GNU Emacs
  626. ==============================
  627.    If you need help installing, using or changing GNU Emacs, there are
  628. two ways to find it:
  629.    * Send a message to a suitable network mailing list.  First try
  630.      `bug-gnu-emacs@prep.ai.mit.edu', and if that brings no response,
  631.      try `help-gnu-emacs@prep.ai.mit.edu'.
  632.    * Look in the service directory for someone who might help you for a
  633.      fee.  The service directory is found in the file named
  634.      `etc/SERVICE' in the Emacs distribution.
  635. File: emacs,  Node: Command Arguments,  Next: Antinews,  Prev: Service,  Up: Top
  636. Command Line Arguments
  637. **********************
  638.    GNU Emacs supports command line arguments to request various actions
  639. when invoking Emacs.  These are for compatibility with other editors and
  640. for sophisticated activities.  We don't recommend using them for
  641. ordinary editing.
  642.    Arguments starting with `-' are "options".  Other arguments specify
  643. files to visit.  Emacs visits the specified files while it starts up.
  644. The last file name on your command line becomes the current buffer; the
  645. other files are also present in other buffers.
  646.    You can use options to specify various other things, such as the size
  647. and position of the X window Emacs uses, its colors, and so on.  A few
  648. options support advanced usage, such as running Lisp functions on files
  649. in batch mode.
  650.    There are two kinds of options: "initial options" and "ordinary
  651. options".  Initial options must come at the beginning of the command
  652. line, in a particular order.  Ordinary options come afterward; they can
  653. appear in any order and can be intermixed with file names to visit.
  654. These and file names are called "ordinary arguments".  Emacs processes
  655. all of these in the order they are written.
  656. * Menu:
  657. * Ordinary Arguments::    Arguments to visit files, load libraries,
  658.               and call functions.
  659. * Initial Options::     Arguments that must come at the start of the command.
  660. * Command Example::     Examples of using command line arguments.
  661. * Resume Arguments::    Specifying arguments when you resume a running Emacs.
  662. * Environment::         Environment variables that Emacs uses.
  663. * Display X::           Changing the default display and using remote login.
  664. * Font X::            Choosing a font for text, under X.
  665. * Colors X::            Choosing colors, under X.
  666. * Window Size X::       Start-up window size, under X.
  667. * Borders X::            Internal and external borders, under X.
  668. * Icons X::             Choosing what sort of icon to use, under X.
  669. * Resources X::         Advanced use of classes and resources, under X.
  670. File: emacs,  Node: Ordinary Arguments,  Next: Initial Options,  Up: Command Arguments
  671. Ordinary Arguments
  672. ==================
  673.    Here is a table of the ordinary arguments and options:
  674. `FILE'
  675.      Visit FILE using `find-file'.  *Note Visiting::.
  676. `+LINENUM FILE'
  677.      Visit FILE using `find-file', then go to line number LINENUM in it.
  678. `-l FILE'
  679. `-load FILE'
  680.      Load a file FILE of Lisp code with the function `load'.  *Note
  681.      Lisp Libraries::.
  682. `-f FUNCTION'
  683. `-funcall FUNCTION'
  684.      Call Lisp function FUNCTION with no arguments.
  685. `-insert FILE'
  686.      Insert the contents of FILE into the current buffer.  This is like
  687.      what `M-x insert-file' does; *Note Misc File Ops::.
  688. `-kill'
  689.      Exit from Emacs without asking for confirmation.
  690. File: emacs,  Node: Initial Options,  Next: Command Example,  Prev: Ordinary Arguments,  Up: Command Arguments
  691. Initial Options
  692. ===============
  693.    The initial options are recognized only at the beginning of the
  694. command line.  If you use more than one of them, they must appear in the
  695. order that they appear in this table.
  696. `-t DEVICE'
  697.      Use DEVICE as the device for terminal input and output.
  698. `-d DISPLAY'
  699.      When running with the X Window System, use the display named
  700.      DISPLAY to make the window that serves as Emacs's terminal.
  701. `-nw'
  702.      Don't communicate directly with X, disregarding the `DISPLAY'
  703.      environment variable even if it is set.  `-nw' stands for
  704.      "non-window."
  705. `-batch'
  706.      Run Emacs in "batch mode", which means that the text being edited
  707.      is not displayed and the standard terminal interrupt characters
  708.      such as `C-z' and `C-c' continue to have their normal effect.
  709.      Emacs in batch mode outputs to `stderr' only what would normally
  710.      be printed in the echo area under program control.
  711.      Batch mode is used for running programs written in Emacs Lisp from
  712.      shell scripts, makefiles, and so on.  Normally the `-l' option or
  713.      `-f' option will be used as well, to invoke a Lisp program to do
  714.      the batch processing.
  715.      `-batch' implies `-q' (do not load an init file).  It also causes
  716.      Emacs to kill itself after all command options have been
  717.      processed.  In addition, auto-saving is not done except in buffers
  718.      for which it has been explicitly requested.
  719. `-no-init-file'
  720.      Do not load your Emacs init file `~/.emacs'.
  721. `-no-site-file'
  722.      Do not load `site-start.el'.  (This file is normally loaded before
  723.      `~/.emacs'.)
  724. `-u USER'
  725. `-user USER'
  726.      Load USER's Emacs init file `~USER/.emacs' instead of your own.
  727. `-debug-init'
  728.      Enable the Emacs Lisp debugger for errors in the init file.
  729.    The init file can access the values of the command line arguments as
  730. the elements of a list in the variable `command-line-args'.  (The list
  731. contains only the ordinary arguments; Emacs processes the initial
  732. arguments before building the list.)  The init file can override the
  733. normal processing of the ordinary arguments by setting this variable.
  734. File: emacs,  Node: Command Example,  Next: Resume Arguments,  Prev: Initial Options,  Up: Command Arguments
  735. Command Argument Example
  736. ========================
  737.    Here is an example of using Emacs with arguments and options.  It
  738. assumes you have a Lisp program file called `hack-c.el' which, when
  739. loaded, performs some useful operation on current buffer, expected to be
  740. a C program.
  741.      emacs -batch foo.c -l hack-c -f save-buffer -kill >& log
  742. This says to visit `foo.c', load `hack-c.el' (which makes changes in
  743. the visited file), save `foo.c' (note that `save-buffer' is the
  744. function that `C-x C-s' is bound to), and then exit to the shell that
  745. this command was done with.  The initial option `-batch' guarantees
  746. there will be no problem redirecting output to `log', because Emacs
  747. will not assume that it has a display terminal to work with.
  748. File: emacs,  Node: Resume Arguments,  Next: Environment,  Prev: Command Example,  Up: Command Arguments
  749. Resuming Emacs with Arguments
  750. =============================
  751.    You can specify ordinary arguments for Emacs when you resume it after
  752. a suspension.  To prepare for this, put the following code in your
  753. `.emacs' file (*note Hooks::.):
  754.      (add-hook 'suspend-hook 'resume-suspend-hook)
  755.    As further preparation, you must execute the shell script
  756. `emacs.csh' (if you use csh as your shell) or `emacs.bash' (if you use
  757. bash as your shell).  These scripts define an alias named `edit', which
  758. will resume Emacs giving it new command line arguments such as files to
  759. visit.
  760.    Only ordinary arguments work properly when you resume Emacs.  Initial
  761. arguments are not recognized--it's too late to execute them anyway.
  762.    Note that resuming Emacs (with or without arguments) must be done
  763. from within the shell that is the parent of the Emacs job.  This is why
  764. `edit' is an alias rather than a program or a shell script.  It is not
  765. possible to implement a resumption command that could be run from other
  766. subjobs of the shell; no way to define a command that could be made the
  767. value of `EDITOR', for example.  Therefore, this feature does not take
  768. the place of the the Emacs Server feature.  *Note Emacs Server::.
  769.    The aliases use the Emacs Server feature if you appear to have a
  770. server Emacs running.  However, they cannot determine this with complete
  771. accuracy.  They may think that a server is still running when in
  772. actuality you have killed that Emacs, because the file `/tmp/.esrv...'
  773. still exists.  If this happens, find that file and delete it.
  774. File: emacs,  Node: Environment,  Next: Display X,  Prev: Resume Arguments,  Up: Command Arguments
  775. Environment Variables
  776. =====================
  777.    This appendix describes how Emacs uses environment variables.  An
  778. environment variable is a string passed from the operating system to
  779. Emacs, and the collection of environment variables is known as the
  780. environment.  Environment variable names are case sensitive and it is
  781. conventional to use upper case letters only.
  782.    Because environment variables come from the operating system there
  783. is no general way to set them; it depends on the operating system and
  784. especially the shell that you are using.  For example, here's how to set
  785. the environment variable `ORGANIZATION' to `not very much' using bash:
  786.      export ORGANIZATION="not very much"
  787. and here's how to do it in csh or tcsh:
  788.      setenv ORGANIZATION "not very much"
  789.    When Emacs is set-up to use the X windowing system, it inherits the
  790. use of a large number of environment variables from the X library.  See
  791. the X documentation for more information.
  792. * Menu:
  793. * General Variables::     Environment variables that all versions of Emacs use.
  794. * Misc Variables::        Certain system specific variables.
  795.