home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / info / emacs.i12 (.txt) < prev    next >
GNU Info File  |  1993-06-14  |  44KB  |  707 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.47 from the
  2. input file emacs.tex.
  3.    This file documents the GNU Emacs editor.
  4.    Copyright (C) 1985, 1986, 1988 Richard M. Stallman.
  5.    Permission is granted to make and distribute verbatim copies of this
  6. manual provided the copyright notice and this permission notice are
  7. preserved on all copies.
  8.    Permission is granted to copy and distribute modified versions of
  9. this manual under the conditions for verbatim copying, provided also
  10. that the sections entitled "The GNU Manifesto", "Distribution" and "GNU
  11. General Public License" are included exactly as in the original, and
  12. provided that the entire resulting derived work is distributed under the
  13. terms of a permission notice identical to this one.
  14.    Permission is granted to copy and distribute translations of this
  15. manual into another language, under the above conditions for modified
  16. versions, except that the sections entitled "The GNU Manifesto",
  17. "Distribution" and "GNU General Public License" may be included in a
  18. translation approved by the author instead of in the original English.
  19. File: emacs,  Node: Quitting,  Next: Lossage,  Prev: Customization,  Up: Top
  20. Quitting and Aborting
  21. =====================
  22. `C-g'
  23.      Quit.  Cancel running or partially typed command.
  24. `C-]'
  25.      Abort innermost recursive editing level and cancel the command
  26.      which invoked it (`abort-recursive-edit').
  27. `M-x top-level'
  28.      Abort all recursive editing levels that are currently executing.
  29. `C-x u'
  30.      Cancel an already-executed command, usually (`undo').
  31.    There are two ways of cancelling commands which are not finished
  32. executing: "quitting" with `C-g', and "aborting" with `C-]' or `M-x
  33. top-level'.  Quitting is cancelling a partially typed command or one
  34. which is already running.  Aborting is getting out of a recursive
  35. editing level and cancelling the command that invoked the recursive
  36. edit.
  37.    Quitting with `C-g' is used for getting rid of a partially typed
  38. command, or a numeric argument that you don't want.  It also stops a
  39. running command in the middle in a relatively safe way, so you can use
  40. it if you accidentally give a command which takes a long time.  In
  41. particular, it is safe to quit out of killing; either your text will
  42. ALL still be there, or it will ALL be in the kill ring (or maybe both).
  43.  Quitting an incremental search does special things documented under
  44. searching; in general, it may take two successive `C-g' characters to
  45. get out of a search.  `C-g' works by setting the variable `quit-flag' to
  46. `t' the instant `C-g' is typed; Emacs Lisp checks this variable
  47. frequently and quits if it is non-`nil'.  `C-g' is only actually
  48. executed as a command if it is typed while Emacs is waiting for input.
  49.    If you quit twice in a row before the first `C-g' is recognized, you
  50. activate the "emergency escape" feature and return to the shell. *Note
  51. Emergency Escape::.
  52.    Aborting with `C-]' (`abort-recursive-edit') is used to get out of a
  53. recursive editing level and cancel the command which invoked it.
  54. Quitting with `C-g' does not do this, and could not do this, because it
  55. is used to cancel a partially typed command within the recursive
  56. editing level.  Both operations are useful.  For example, if you are in
  57. the Emacs debugger (*note Lisp Debug::.) and have typed `C-u 8' to
  58. enter a numeric argument, you can cancel that argument with `C-g' and
  59. remain in the debugger.
  60.    The command `M-x top-level' is equivalent to "enough" `C-]' commands
  61. to get you out of all the levels of recursive edits that you are in. 
  62. `C-]' gets you out one level at a time, but `M-x top-level' goes out
  63. all levels at once.  Both `C-]' and `M-x top-level' are like all other
  64. commands, and unlike `C-g', in that they are effective only when Emacs
  65. is ready for a command.  `C-]' is an ordinary key and has its meaning
  66. only because of its binding in the keymap. *Note Recursive Edit::.
  67.    `C-x u' (`undo') is not strictly speaking a way of cancelling a
  68. command, but you can think of it as cancelling a command already
  69. finished executing.  *Note Undo::.
  70. File: emacs,  Node: Lossage,  Next: Bugs,  Prev: Quitting,  Up: Top
  71. Dealing with Emacs Trouble
  72. ==========================
  73.    This section describes various conditions in which Emacs fails to
  74. work, and how to recognize them and correct them.
  75. * Menu:
  76. * Stuck Recursive::    `[...]' in mode line around the parentheses
  77. * Screen Garbled::     Garbage on the screen
  78. * Text Garbled::       Garbage in the text
  79. * Unasked-for Search:: Spontaneous entry to incremental search
  80. * Emergency Escape::   Emergency escape--
  81.                         What to do if Emacs stops responding
  82. * Total Frustration::  When you are at your wits' end.
  83. File: emacs,  Node: Stuck Recursive,  Next: Screen Garbled,  Prev: Lossage,  Up: Lossage
  84. Recursive Editing Levels
  85. ------------------------
  86.    Recursive editing levels are important and useful features of Emacs,
  87. but they can seem like malfunctions to the user who does not understand
  88. them.
  89.    If the mode line has square brackets `[...]' around the parentheses
  90. that contain the names of the major and minor modes, you have entered a
  91. recursive editing level.  If you did not do this on purpose, or if you
  92. don't understand what that means, you should just get out of the
  93. recursive editing level.  To do so, type `M-x top-level'.  This is
  94. called getting back to top level.  *Note Recursive Edit::.
  95. File: emacs,  Node: Screen Garbled,  Next: Text Garbled,  Prev: Stuck Recursive,  Up: Lossage
  96. Garbage on the Screen
  97. ---------------------
  98.    If the data on the screen looks wrong, the first thing to do is see
  99. whether the text is really wrong.  Type `C-l', to redisplay the entire
  100. screen.  If it appears correct after this, the problem was entirely in
  101. the previous screen update.
  102.    Display updating problems often result from an incorrect termcap
  103. entry for the terminal you are using.  The file `etc/TERMS' in the Emacs
  104. distribution gives the fixes for known problems of this sort. `INSTALL'
  105. contains general advice for these problems in one of its sections. 
  106. Very likely there is simply insufficient padding for certain display
  107. operations.  To investigate the possibility that you have this sort of
  108. problem, try Emacs on another terminal made by a different manufacturer.
  109. If problems happen frequently on one kind of terminal but not another
  110. kind, it is likely to be a bad termcap entry, though it could also be
  111. due to a bug in Emacs that appears for terminals that have or that lack
  112. specific features.
  113. File: emacs,  Node: Text Garbled,  Next: Unasked-for Search,  Prev: Screen Garbled,  Up: Lossage
  114. Garbage in the Text
  115. -------------------
  116.    If `C-l' shows that the text is wrong, try undoing the changes to it
  117. using `C-x u' until it gets back to a state you consider correct.  Also
  118. try `C-h l' to find out what command you typed to produce the observed
  119. results.
  120.    If a large portion of text appears to be missing at the beginning or
  121. end of the buffer, check for the word `Narrow' in the mode line. If it
  122. appears, the text is still present, but marked off-limits. To make it
  123. visible again, type `C-x w'.  *Note Narrowing::.
  124. File: emacs,  Node: Unasked-for Search,  Next: Emergency Escape,  Prev: Text Garbled,  Up: Lossage
  125. Spontaneous Entry to Incremental Search
  126. ---------------------------------------
  127.    If Emacs spontaneously displays `I-search:' at the bottom of the
  128. screen, it means that the terminal is sending `C-s' and `C-q' according
  129. to the poorly designed xon/xoff "flow control" protocol.  You should
  130. try to prevent this by putting the terminal in a mode where it will not
  131. use flow control or giving it enough padding that it will never send a
  132. `C-s'.  If that cannot be done, you must tell Emacs to expect flow
  133. control to be used, until you can get a properly designed terminal.
  134.    Information on how to do these things can be found in the file
  135. `INSTALL' in the Emacs distribution.
  136. File: emacs,  Node: Emergency Escape,  Next: Total Frustration,  Prev: Unasked-for Search,  Up: Lossage
  137. Emergency Escape
  138. ----------------
  139.    Because at times there have been bugs causing Emacs to loop without
  140. checking `quit-flag', a special feature causes Emacs to be suspended
  141. immediately if you type a second `C-g' while the flag is already set,
  142. so you can always get out of GNU Emacs.  Normally Emacs recognizes and
  143. clears `quit-flag' (and quits!) quickly enough to prevent this from
  144. happening.
  145.    When you resume Emacs after a suspension caused by multiple `C-g', it
  146. asks two questions before going back to what it had been doing:
  147.      Auto-save? (y or n)
  148.      Abort (and dump core)? (y or n)
  149. Answer each one with `y' or `n' followed by RET.
  150.    Saying `y' to `Auto-save?' causes immediate auto-saving of all
  151. modified buffers in which auto-saving is enabled.
  152.    Saying `y' to `Abort (and dump core)?' causes an illegal instruction
  153. to be executed, dumping core.  This is to enable a wizard to figure out
  154. why Emacs was failing to quit in the first place.  Execution does not
  155. continue after a core dump.  If you answer `n', execution does
  156. continue.  With luck, GNU Emacs will ultimately check `quit-flag' and
  157. quit normally. If not, and you type another `C-g', it is suspended
  158. again.
  159.    If Emacs is not really hung, just slow, you may invoke the double
  160. `C-g' feature without really meaning to.  Then just resume and answer
  161. `n' to both questions, and you will arrive at your former state.
  162. Presumably the quit you requested will happen soon.
  163.    The double-`C-g' feature may be turned off when Emacs is running
  164. under a window system, since the window system always enables you to
  165. kill Emacs or to create another window and run another program.
  166. File: emacs,  Node: Total Frustration,  Prev: Emergency Escape,  Up: Lossage
  167. Help for Total Frustration
  168. --------------------------
  169.    If using Emacs (or something else) becomes terribly frustrating and
  170. none of the techniques described above solve the problem, Emacs can
  171. still help you.
  172.    First, if the Emacs you are using is not responding to commands, type
  173. `C-g C-g' to get out of it and then start a new one.
  174.    Second, type `M-x doctor RET'.
  175.    The doctor will make you feel better.  Each time you say something to
  176. the doctor, you must end it by typing RET RET.  This lets the doctor
  177. know you are finished.
  178. File: emacs,  Node: Bugs,  Next: Manifesto,  Prev: Lossage,  Up: Top
  179. Reporting Bugs
  180. ==============
  181.    Sometimes you will encounter a bug in Emacs.  Although we cannot
  182. promise we can or will fix the bug, and we might not even agree that it
  183. is a bug, we want to hear about bugs you encounter in case we do want
  184. to fix them.
  185.    To make it possible for us to fix a bug, you must report it.  In
  186. order to do so effectively, you must know when and how to do it.
  187. When Is There a Bug
  188. -------------------
  189.    If Emacs executes an illegal instruction, or dies with an operating
  190. system error message that indicates a problem in the program (as
  191. opposed to something like "disk full"), then it is certainly a bug.
  192.    If Emacs updates the display in a way that does not correspond to
  193. what is in the buffer, then it is certainly a bug.  If a command seems
  194. to do the wrong thing but the problem corrects itself if you type
  195. `C-l', it is a case of incorrect display updating.
  196.    Taking forever to complete a command can be a bug, but you must make
  197. certain that it was really Emacs's fault.  Some commands simply take a
  198. long time.  Type `C-g' and then `C-h l' to see whether the input Emacs
  199. received was what you intended to type; if the input was such that you
  200. KNOW it should have been processed quickly, report a bug.  If you don't
  201. know whether the command should take a long time, find out by looking
  202. in the manual or by asking for assistance.
  203.    If a command you are familiar with causes an Emacs error message in a
  204. case where its usual definition ought to be reasonable, it is probably a
  205.    If a command does the wrong thing, that is a bug.  But be sure you
  206. know for certain what it ought to have done.  If you aren't familiar
  207. with the command, or don't know for certain how the command is supposed
  208. to work, then it might actually be working right.  Rather than jumping
  209. to conclusions, show the problem to someone who knows for certain.
  210.    Finally, a command's intended definition may not be best for editing
  211. with.  This is a very important sort of problem, but it is also a
  212. matter of judgment.  Also, it is easy to come to such a conclusion out
  213. of ignorance of some of the existing features.  It is probably best not
  214. to complain about such a problem until you have checked the
  215. documentation in the usual ways, feel confident that you understand it,
  216. and know for certain that what you want is not available.  If you are
  217. not sure what the command is supposed to do after a careful reading of
  218. the manual, check the index and glossary for any terms that may be
  219. unclear.  If you still do not understand, this indicates a bug in the
  220. manual.  The manual's job is to make everything clear.  It is just as
  221. important to report documentation bugs as program bugs.
  222.    If the on-line documentation string of a function or variable
  223. disagrees with the manual, one of them must be wrong, so report the bug.
  224. How to Report a Bug
  225. -------------------
  226.    When you decide that there is a bug, it is important to report it
  227. and to report it in a way which is useful.  What is most useful is an
  228. exact description of what commands you type, starting with the shell
  229. command to run Emacs, until the problem happens.  Always include the
  230. version number of Emacs that you are using; type `M-x emacs-version' to
  231. print this.
  232.    The most important principle in reporting a bug is to report FACTS,
  233. not hypotheses or categorizations.  It is always easier to report the
  234. facts, but people seem to prefer to strain to posit explanations and
  235. report them instead.  If the explanations are based on guesses about
  236. how Emacs is implemented, they will be useless; we will have to try to
  237. figure out what the facts must have been to lead to such speculations. 
  238. Sometimes this is impossible.  But in any case, it is unnecessary work
  239. for us.
  240.    For example, suppose that you type `C-x C-f /glorp/baz.ugh RET',
  241. visiting a file which (you know) happens to be rather large, and Emacs
  242. prints out `I feel pretty today'.  The best way to report the bug is
  243. with a sentence like the preceding one, because it gives all the facts
  244. and nothing but the facts.
  245.    Do not assume that the problem is due to the size of the file and
  246. say, "When I visit a large file, Emacs prints out `I feel pretty
  247. today'." This is what we mean by "guessing explanations".  The problem
  248. is just as likely to be due to the fact that there is a `z' in the file
  249. name.  If this is so, then when we got your report, we would try out
  250. the problem with some "large file", probably with no `z' in its name,
  251. and not find anything wrong.  There is no way in the world that we
  252. could guess that we should try visiting a file with a `z' in its name.
  253.    Alternatively, the problem might be due to the fact that the file
  254. starts with exactly 25 spaces.  For this reason, you should make sure
  255. that you inform us of the exact contents of any file that is needed to
  256. reproduce the bug.  What if the problem only occurs when you have typed
  257. the `C-x C-a' command previously?  This is why we ask you to give the
  258. exact sequence of characters you typed since starting to use Emacs.
  259.    You should not even say "visit a file" instead of `C-x C-f' unless
  260. you know that it makes no difference which visiting command is used.
  261. Similarly, rather than saying "if I have three characters on the line,"
  262. say "after I type `RET A B C RET C-p'," if that is the way you entered
  263. the text.
  264.    If you are not in Fundamental mode when the problem occurs, you
  265. should say what mode you are in.
  266.    If the manifestation of the bug is an Emacs error message, it is
  267. important to report not just the text of the error message but a
  268. backtrace showing how the Lisp program in Emacs arrived at the error. 
  269. To make the backtrace, you must execute the Lisp expression `(setq
  270. debug-on-error t)' before the error happens (that is to say, you must
  271. execute that expression and then make the bug happen).  This causes the
  272. Lisp debugger to run (*note Lisp Debug::.).  The debugger's backtrace
  273. can be copied as text into the bug report.  This use of the debugger is
  274. possible only if you know how to make the bug happen again.  Do note
  275. the error message the first time the bug happens, so if you can't make
  276. it happen again, you can report at least that.
  277.    Check whether any programs you have loaded into the Lisp world,
  278. including your `.emacs' file, set any variables that may affect the
  279. functioning of Emacs.  Also, see whether the problem happens in a
  280. freshly started Emacs without loading your `.emacs' file (start Emacs
  281. with the `-q' switch to prevent loading the init file.)  If the problem
  282. does NOT occur then, it is essential that we know the contents of any
  283. programs that you must load into the Lisp world in order to cause the
  284. problem to occur.
  285.    If the problem does depend on an init file or other Lisp programs
  286. that are not part of the standard Emacs system, then you should make
  287. sure it is not a bug in those programs by complaining to their
  288. maintainers first. After they verify that they are using Emacs in a way
  289. that is supposed to work, they should report the bug.
  290.    If you can tell us a way to cause the problem without visiting any
  291. files, please do so.  This makes it much easier to debug.  If you do
  292. need files, make sure you arrange for us to see their exact contents. 
  293. For example, it can often matter whether there are spaces at the ends
  294. of lines, or a newline after the last line in the buffer (nothing ought
  295. to care whether the last line is terminated, but tell that to the bugs).
  296.    The easy way to record the input to Emacs precisely is to to write a
  297. dribble file; execute the Lisp expression
  298.      (open-dribble-file "~/dribble")
  299. using `Meta-ESC' or from the `*scratch*' buffer just after starting
  300. Emacs.  From then on, all Emacs input will be written in the specified
  301. dribble file until the Emacs process is killed.
  302.    For possible display bugs, it is important to report the terminal
  303. type (the value of environment variable `TERM'), the complete termcap
  304. entry for the terminal from `/etc/termcap' (since that file is not
  305. identical on all machines), and the output that Emacs actually sent to
  306. the terminal. The way to collect this output is to execute the Lisp
  307. expression
  308.      (open-termscript "~/termscript")
  309. using `Meta-ESC' or from the `*scratch*' buffer just after starting
  310. Emacs.  From then on, all output from Emacs to the terminal will be
  311. written in the specified termscript file as well, until the Emacs
  312. process is killed.  If the problem happens when Emacs starts up, put
  313. this expression into your `.emacs' file so that the termscript file will
  314. be open when Emacs displays the screen for the first time.  Be warned:
  315. it is often difficult, and sometimes impossible, to fix a
  316. terminal-dependent bug without access to a terminal of the type that
  317. stimulates the bug.
  318.    The address for reporting bugs is
  319. GNU Emacs Bugs
  320. 545 Tech Sq, rm 703
  321. Cambridge, MA 02139
  322. or send email to `mit-eddie!bug-gnu-emacs' (Usenet) or
  323. `bug-gnu-emacs@prep.ai.mit.edu' (Internet).
  324.    Once again, we do not promise to fix the bug; but if the bug is
  325. serious, or ugly, or easy to fix, chances are we will want to.
  326. File: emacs,  Node: Manifesto,  Prev: Bugs,  Up: Top
  327. The GNU Manifesto
  328. *****************
  329. What's GNU?  Gnu's Not Unix!
  330. ============================
  331.    GNU, which stands for Gnu's Not Unix, is the name for the complete
  332. Unix-compatible software system which I am writing so that I can give it
  333. away free to everyone who can use it.  Several other volunteers are
  334. helping me.  Contributions of time, money, programs and equipment are
  335. greatly needed.
  336.    So far we have an Emacs text editor with Lisp for writing editor
  337. commands, a source level debugger, a yacc-compatible parser generator,
  338. a linker, and around 35 utilities.  A shell (command interpreter) is
  339. nearly completed.  A new portable optimizing C compiler has compiled
  340. itself and may be released this year.  An initial kernel exists but
  341. many more features are needed to emulate Unix.  When the kernel and
  342. compiler are finished, it will be possible to distribute a GNU system
  343. suitable for program development.  We will use TeX as our text
  344. formatter, but an nroff is being worked on.  We will use the free,
  345. portable X window system as well.  After this we will add a portable
  346. Common Lisp, an Empire game, a spreadsheet, and hundreds of other
  347. things, plus on-line documentation.  We hope to supply, eventually,
  348. everything useful that normally comes with a Unix system, and more.
  349.    GNU will be able to run Unix programs, but will not be identical to
  350. Unix. We will make all improvements that are convenient, based on our
  351. experience with other operating systems.  In particular, we plan to
  352. have longer filenames, file version numbers, a crashproof file system,
  353. filename completion perhaps, terminal-independent display support, and
  354. perhaps eventually a Lisp-based window system through which several
  355. Lisp programs and ordinary Unix programs can share a screen.  Both C
  356. and Lisp will be available as system programming languages.  We will
  357. try to support UUCP, MIT Chaosnet, and Internet protocols for
  358. communication.
  359.    GNU is aimed initially at machines in the 68000/16000 class with
  360. virtual memory, because they are the easiest machines to make it run
  361. on.  The extra effort to make it run on smaller machines will be left
  362. to someone who wants to use it on them.
  363.    To avoid horrible confusion, please pronounce the `G' in the word
  364. `GNU' when it is the name of this project.
  365. Why I Must Write GNU
  366. ====================
  367.    I consider that the golden rule requires that if I like a program I
  368. must share it with other people who like it.  Software sellers want to
  369. divide the users and conquer them, making each user agree not to share
  370. with others.  I refuse to break solidarity with other users in this
  371. way.  I cannot in good conscience sign a nondisclosure agreement or a
  372. software license agreement.  For years I worked within the Artificial
  373. Intelligence Lab to resist such tendencies and other inhospitalities,
  374. but eventually they had gone too far: I could not remain in an
  375. institution where such things are done for me against my will.
  376.    So that I can continue to use computers without dishonor, I have
  377. decided to put together a sufficient body of free software so that I
  378. will be able to get along without any software that is not free.  I
  379. have resigned from the AI lab to deny MIT any legal excuse to prevent
  380. me from giving GNU away.
  381. Why GNU Will Be Compatible with Unix
  382. ====================================
  383.    Unix is not my ideal system, but it is not too bad.  The essential
  384. features of Unix seem to be good ones, and I think I can fill in what
  385. Unix lacks without spoiling them.  And a system compatible with Unix
  386. would be convenient for many other people to adopt.
  387. How GNU Will Be Available
  388. =========================
  389.    GNU is not in the public domain.  Everyone will be permitted to
  390. modify and redistribute GNU, but no distributor will be allowed to
  391. restrict its further redistribution.  That is to say, proprietary
  392. modifications will not be allowed.  I want to make sure that all
  393. versions of GNU remain free.
  394. Why Many Other Programmers Want to Help
  395. =======================================
  396.    I have found many other programmers who are excited about GNU and
  397. want to help.
  398.    Many programmers are unhappy about the commercialization of system
  399. software.  It may enable them to make more money, but it requires them
  400. to feel in conflict with other programmers in general rather than feel
  401. as comrades.  The fundamental act of friendship among programmers is the
  402. sharing of programs; marketing arrangements now typically used
  403. essentially forbid programmers to treat others as friends.  The
  404. purchaser of software must choose between friendship and obeying the
  405. law.  Naturally, many decide that friendship is more important.  But
  406. those who believe in law often do not feel at ease with either choice. 
  407. They become cynical and think that programming is just a way of making
  408. money.
  409.    By working on and using GNU rather than proprietary programs, we can
  410. be hospitable to everyone and obey the law.  In addition, GNU serves as
  411. an example to inspire and a banner to rally others to join us in
  412. sharing. This can give us a feeling of harmony which is impossible if
  413. we use software that is not free.  For about half the programmers I
  414. talk to, this is an important happiness that money cannot replace.
  415. How You Can Contribute
  416. ======================
  417.    I am asking computer manufacturers for donations of machines and
  418. money. I'm asking individuals for donations of programs and work.
  419.    One consequence you can expect if you donate machines is that GNU
  420. will run on them at an early date.  The machines should be complete,
  421. ready to use systems, approved for use in a residential area, and not
  422. in need of sophisticated cooling or power.
  423.    I have found very many programmers eager to contribute part-time
  424. work for GNU.  For most projects, such part-time distributed work would
  425. be very hard to coordinate; the independently-written parts would not
  426. work together. But for the particular task of replacing Unix, this
  427. problem is absent.  A complete Unix system contains hundreds of utility
  428. programs, each of which is documented separately.  Most interface
  429. specifications are fixed by Unix compatibility.  If each contributor
  430. can write a compatible replacement for a single Unix utility, and make
  431. it work properly in place of the original on a Unix system, then these
  432. utilities will work right when put together. Even allowing for Murphy
  433. to create a few unexpected problems, assembling these components will
  434. be a feasible task.  (The kernel will require closer communication and
  435. will be worked on by a small, tight group.)
  436.    If I get donations of money, I may be able to hire a few people full
  437. or part time.  The salary won't be high by programmers' standards, but
  438. I'm looking for people for whom building community spirit is as
  439. important as making money.  I view this as a way of enabling dedicated
  440. people to devote their full energies to working on GNU by sparing them
  441. the need to make a living in another way.
  442. Why All Computer Users Will Benefit
  443. ===================================
  444.    Once GNU is written, everyone will be able to obtain good system
  445. software free, just like air.
  446.    This means much more than just saving everyone the price of a Unix
  447. license. It means that much wasteful duplication of system programming
  448. effort will be avoided.  This effort can go instead into advancing the
  449. state of the art.
  450.    Complete system sources will be available to everyone.  As a result,
  451. a user who needs changes in the system will always be free to make them
  452. himself, or hire any available programmer or company to make them for
  453. him.  Users will no longer be at the mercy of one programmer or company
  454. which owns the sources and is in sole position to make changes.
  455.    Schools will be able to provide a much more educational environment
  456. by encouraging all students to study and improve the system code. 
  457. Harvard's computer lab used to have the policy that no program could be
  458. installed on the system if its sources were not on public display, and
  459. upheld it by actually refusing to install certain programs.  I was very
  460. much inspired by this.
  461.    Finally, the overhead of considering who owns the system software
  462. and what one is or is not entitled to do with it will be lifted.
  463.    Arrangements to make people pay for using a program, including
  464. licensing of copies, always incur a tremendous cost to society through
  465. the cumbersome mechanisms necessary to figure out how much (that is,
  466. which programs) a person must pay for.  And only a police state can
  467. force everyone to obey them.  Consider a space station where air must
  468. be manufactured at great cost: charging each breather per liter of air
  469. may be fair, but wearing the metered gas mask all day and all night is
  470. intolerable even if everyone can afford to pay the air bill.  And the
  471. TV cameras everywhere to see if you ever take the mask off are
  472. outrageous.  It's better to support the air plant with a head tax and
  473. chuck the masks.
  474.    Copying all or parts of a program is as natural to a programmer as
  475. breathing, and as productive.  It ought to be as free.
  476. Some Easily Rebutted Objections to GNU's Goals
  477. ==============================================
  478.      "Nobody will use it if it is free, because that means they can't
  479.      rely on any support."
  480.      "You have to charge for the program to pay for providing the
  481.      support."
  482.    If people would rather pay for GNU plus service than get GNU free
  483. without service, a company to provide just service to people who have
  484. obtained GNU free ought to be profitable.
  485.    We must distinguish between support in the form of real programming
  486. work and mere handholding.  The former is something one cannot rely on
  487. from a software vendor.  If your problem is not shared by enough
  488. people, the vendor will tell you to get lost.
  489.    If your business needs to be able to rely on support, the only way
  490. is to have all the necessary sources and tools.  Then you can hire any
  491. available person to fix your problem; you are not at the mercy of any
  492. individual. With Unix, the price of sources puts this out of
  493. consideration for most businesses.  With GNU this will be easy.  It is
  494. still possible for there to be no available competent person, but this
  495. problem cannot be blamed on distibution arrangements.  GNU does not
  496. eliminate all the world's problems, only some of them.
  497.    Meanwhile, the users who know nothing about computers need
  498. handholding: doing things for them which they could easily do
  499. themselves but don't know how.
  500.    Such services could be provided by companies that sell just
  501. hand-holding and repair service.  If it is true that users would rather
  502. spend money and get a product with service, they will also be willing
  503. to buy the service having got the product free.  The service companies
  504. will compete in quality and price; users will not be tied to any
  505. particular one.  Meanwhile, those of us who don't need the service
  506. should be able to use the program without paying for the service.
  507.      "You cannot reach many people without advertising, and you must
  508.      charge for the program to support that."
  509.      "It's no use advertising a program people can get free."
  510.    There are various forms of free or very cheap publicity that can be
  511. used to inform numbers of computer users about something like GNU.  But
  512. it may be true that one can reach more microcomputer users with
  513. advertising.  If this is really so, a business which advertises the
  514. service of copying and mailing GNU for a fee ought to be successful
  515. enough to pay for its advertising and more.  This way, only the users
  516. who benefit from the advertising pay for it.
  517.    On the other hand, if many people get GNU from their friends, and
  518. such companies don't succeed, this will show that advertising was not
  519. really necessary to spread GNU.  Why is it that free market advocates
  520. don't want to let the free market decide this?
  521.      "My company needs a proprietary operating system to get a
  522.      competitive edge."
  523.    GNU will remove operating system software from the realm of
  524. competition. You will not be able to get an edge in this area, but
  525. neither will your competitors be able to get an edge over you.  You and
  526. they will compete in other areas, while benefitting mutually in this
  527. one.  If your business is selling an operating system, you will not
  528. like GNU, but that's tough on you.  If your business is something else,
  529. GNU can save you from being pushed into the expensive business of
  530. selling operating systems.
  531.    I would like to see GNU development supported by gifts from many
  532. manufacturers and users, reducing the cost to each.
  533.      "Don't programmers deserve a reward for their creativity?"
  534.    If anything deserves a reward, it is social contribution. 
  535. Creativity can be a social contribution, but only in so far as society
  536. is free to use the results.  If programmers deserve to be rewarded for
  537. creating innovative programs, by the same token they deserve to be
  538. punished if they restrict the use of these programs.
  539.      "Shouldn't a programmer be able to ask for a reward for his
  540.      creativity?"
  541.    There is nothing wrong with wanting pay for work, or seeking to
  542. maximize one's income, as long as one does not use means that are
  543. destructive.  But the means customary in the field of software today
  544. are based on destruction.
  545.    Extracting money from users of a program by restricting their use of
  546. it is destructive because the restrictions reduce the amount and the
  547. ways that the program can be used.  This reduces the amount of wealth
  548. that humanity derives from the program.  When there is a deliberate
  549. choice to restrict, the harmful consequences are deliberate destruction.
  550.    The reason a good citizen does not use such destructive means to
  551. become wealthier is that, if everyone did so, we would all become
  552. poorer from the mutual destructiveness.  This is Kantian ethics; or,
  553. the Golden Rule. Since I do not like the consequences that result if
  554. everyone hoards information, I am required to consider it wrong for one
  555. to do so. Specifically, the desire to be rewarded for one's creativity
  556. does not justify depriving the world in general of all or part of that
  557. creativity.
  558.      "Won't programmers starve?"
  559.    I could answer that nobody is forced to be a programmer.  Most of us
  560. cannot manage to get any money for standing on the street and making
  561. faces.  But we are not, as a result, condemned to spend our lives
  562. standing on the street making faces, and starving.  We do something
  563. else.
  564.    But that is the wrong answer because it accepts the questioner's
  565. implicit assumption: that without ownership of software, programmers
  566. cannot possibly be paid a cent.  Supposedly it is all or nothing.
  567.    The real reason programmers will not starve is that it will still be
  568. possible for them to get paid for programming; just not paid as much as
  569.    Restricting copying is not the only basis for business in software. 
  570. It is the most common basis because it brings in the most money.  If it
  571. were prohibited, or rejected by the customer, software business would
  572. move to other bases of organization which are now used less often. 
  573. There are always numerous ways to organize any kind of business.
  574.    Probably programming will not be as lucrative on the new basis as it
  575. is now.  But that is not an argument against the change.  It is not
  576. considered an injustice that sales clerks make the salaries that they
  577. now do.  If programmers made the same, that would not be an injustice
  578. either.  (In practice they would still make considerably more than
  579. that.)
  580.      "Don't people have a right to control how their creativity is
  581.      used?"
  582.    "Control over the use of one's ideas" really constitutes control over
  583. other people's lives; and it is usually used to make their lives more
  584. difficult.
  585.    People who have studied the issue of intellectual property rights
  586. carefully (such as lawyers) say that there is no intrinsic right to
  587. intellectual property.  The kinds of supposed intellectual property
  588. rights that the government recognizes were created by specific acts of
  589. legislation for specific purposes.
  590.    For example, the patent system was established to encourage
  591. inventors to disclose the details of their inventions.  Its purpose was
  592. to help society rather than to help inventors.  At the time, the life
  593. span of 17 years for a patent was short compared with the rate of
  594. advance of the state of the art.  Since patents are an issue only among
  595. manufacturers, for whom the cost and effort of a license agreement are
  596. small compared with setting up production, the patents often do not do
  597. much harm.  They do not obstruct most individuals who use patented
  598. products.
  599.    The idea of copyright did not exist in ancient times, when authors
  600. frequently copied other authors at length in works of non-fiction.  This
  601. practice was useful, and is the only way many authors' works have
  602. survived even in part.  The copyright system was created expressly for
  603. the purpose of encouraging authorship.  In the domain for which it was
  604. invented--books, which could be copied economically only on a printing
  605. press--it did little harm, and did not obstruct most of the individuals
  606. who read the books.
  607.    All intellectual property rights are just licenses granted by society
  608. because it was thought, rightly or wrongly, that society as a whole
  609. would benefit by granting them.  But in any particular situation, we
  610. have to ask: are we really better off granting such license?  What kind
  611. of act are we licensing a person to do?
  612.    The case of programs today is very different from that of books a
  613. hundred years ago.  The fact that the easiest way to copy a program is
  614. from one neighbor to another, the fact that a program has both source
  615. code and object code which are distinct, and the fact that a program is
  616. used rather than read and enjoyed, combine to create a situation in
  617. which a person who enforces a copyright is harming society as a whole
  618. both materially and spiritually; in which a person should not do so
  619. regardless of whether the law enables him to.
  620.      "Competition makes things get done better."
  621.    The paradigm of competition is a race: by rewarding the winner, we
  622. encourage everyone to run faster.  When capitalism really works this
  623. way, it does a good job; but its defenders are wrong in assuming it
  624. always works this way.  If the runners forget why the reward is offered
  625. and become intent on winning, no matter how, they may find other
  626. strategies--such as, attacking other runners.  If the runners get into
  627. a fist fight, they will all finish late.
  628.    Proprietary and secret software is the moral equivalent of runners
  629. in a fist fight.  Sad to say, the only referee we've got does not seem
  630. to object to fights; he just regulates them ("For every ten yards you
  631. run, you can fire one shot").  He really ought to break them up, and
  632. penalize runners for even trying to fight.
  633.      "Won't everyone stop programming without a monetary incentive?"
  634.    Actually, many people will program with absolutely no monetary
  635. incentive. Programming has an irresistible fascination for some people,
  636. usually the people who are best at it.  There is no shortage of
  637. professional musicians who keep at it even though they have no hope of
  638. making a living that way.
  639.    But really this question, though commonly asked, is not appropriate
  640. to the situation.  Pay for programmers will not disappear, only become
  641. less.  So the right question is, will anyone program with a reduced
  642. monetary incentive?  My experience shows that they will.
  643.    For more than ten years, many of the world's best programmers worked
  644. at the Artificial Intelligence Lab for far less money than they could
  645. have had anywhere else.  They got many kinds of non-monetary rewards:
  646. fame and appreciation, for example.  And creativity is also fun, a
  647. reward in itself.
  648.    Then most of them left when offered a chance to do the same
  649. interesting work for a lot of money.
  650.    What the facts show is that people will program for reasons other
  651. than riches; but if given a chance to make a lot of money as well, they
  652. will come to expect and demand it.  Low-paying organizations do poorly
  653. in competition with high-paying ones, but they do not have to do badly
  654. if the high-paying ones are banned.
  655.      "We need the programmers desperately.  If they demand that we stop
  656.      helping our neighbors, we have to obey."
  657.    You're never so desperate that you have to obey this sort of demand.
  658. Remember: millions for defense, but not a cent for tribute!
  659.      "Programmers need to make a living somehow."
  660.    In the short run, this is true.  However, there are plenty of ways
  661. that programmers could make a living without selling the right to use a
  662. program. This way is customary now because it brings programmers and
  663. businessmen the most money, not because it is the only way to make a
  664. living.  It is easy to find other ways if you want to find them.  Here
  665. are a number of examples.
  666.    A manufacturer introducing a new computer will pay for the porting of
  667. operating systems onto the new hardware.
  668.    The sale of teaching, hand-holding and maintenance services could
  669. also employ programmers.
  670.    People with new ideas could distribute programs as freeware, asking
  671. for donations from satisfied users, or selling hand-holding services. 
  672. I have met people who are already working this way successfully.
  673.    Users with related needs can form users' groups, and pay dues.  A
  674. group would contract with programming companies to write programs that
  675. the group's members would like to use.
  676.    All sorts of development can be funded with a Software Tax:
  677.      Suppose everyone who buys a computer has to pay x percent of the
  678.      price as a software tax.  The government gives this to an agency
  679.      like the NSF to spend on software development.
  680.      But if the computer buyer makes a donation to software development
  681.      himself, he can take a credit against the tax.  He can donate to
  682.      the project of his own choosing--often, chosen because he hopes to
  683.      use the results when it is done.  He can take a credit for any
  684.      amount of donation up to the total tax he had to pay.
  685.      The total tax rate could be decided by a vote of the payers of the
  686.      tax, weighted according to the amount they will be taxed on.
  687.      The consequences:
  688.         * The computer-using community supports software development.
  689.         * This community decides what level of support is needed.
  690.         * Users who care which projects their share is spent on can
  691.           choose this for themselves.
  692.    In the long run, making programs free is a step toward the
  693. post-scarcity world, where nobody will have to work very hard just to
  694. make a living. People will be free to devote themselves to activities
  695. that are fun, such as programming, after spending the necessary ten
  696. hours a week on required tasks such as legislation, family counseling,
  697. robot repair and asteroid prospecting.  There will be no need to be
  698. able to make a living from programming.
  699.    We have already greatly reduced the amount of work that the whole
  700. society must do for its actual productivity, but only a little of this
  701. has translated itself into leisure for workers because much
  702. nonproductive activity is required to accompany productive activity. 
  703. The main causes of this are bureaucracy and isometric struggles against
  704. competition.  Free software will greatly reduce these drains in the
  705. area of software production.  We must do this, in order for technical
  706. gains in productivity to translate into less work for us.
  707.