home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / E17INFO.ZIP / EMACS-18 < prev    next >
Encoding:
GNU Info File  |  1993-07-18  |  40.9 KB  |  962 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.54 from the
  2. input file emacs.texi.
  3.  
  4. 
  5. File: emacs,  Node: Antinews,  Next: Manifesto,  Prev: Command Arguments,  Up: Top
  6.  
  7. Emacs 18 Antinews
  8. *****************
  9.  
  10.    For those users who live backwards in time, here is information about
  11. downgrading to Emacs version 18.  We hope you will enjoy the greater
  12. simplicity that results from the absence of many Emacs 19 features.
  13.  
  14. Packages Removed
  15. ================
  16.  
  17.    To reduce the size of the distribution, we have eliminated numerous
  18. packages including GNUS, VC (version control), Hexl (for editing binary
  19. files), Edebug, Emerge, Mpuz, Spook, and Gomoku.
  20.  
  21.    Major modes removed in Emacs 18 include C++ mode, Awk mode, Icon
  22. mode, Asm mode, Makefile mode, Perl mode and SGML mode.
  23.  
  24.    The function `enable-flow-control' does not exist; see the file
  25. `PROBLEMS' in the Emacs distribution for directions for coping with
  26. flow control.
  27.  
  28.    The Calendar feature provided is a very simple one.  All it can do is
  29. display three months, by default centered around the current month.  If
  30. you give it a numeric argument, that specifies the number of months
  31. forward or back.
  32.  
  33. Fundamental Changes
  34. ===================
  35.  
  36.    Auto save and garbage collection happen only while you are typing,
  37. never while you are idle.  This is to make them more like affectionate
  38. pets.  Think of them as cats that like to sit on your terminal only
  39. when you are working there.
  40.  
  41.    Transient Mark mode and Line Number mode are absent in Emacs 18.  If
  42. you are an Emacs user, you are smart enough to keep track of the mark
  43. in your head, and you don't need line numbers because you can search
  44. for precisely the text you want.
  45.  
  46.    There are no menu bars or scroll bars; no faces, text properties or
  47. overlays.
  48.  
  49.    There are no minibuffer history commands.
  50.  
  51.    There is only one frame, so the Emacs 19 `C-x 5' command series is
  52. meaningless.  Instead, `C-x 5' in Emacs 18 splits the selected window
  53. horizontally (like `C-x 3' in Emacs 19).
  54.  
  55.    Another simplification in Emacs 18 is that all input events are
  56. characters.  Function keys and arrow keys are represented as sequences
  57. of characters; the terminal-specific Emacs Lisp file for your terminal
  58. is responsible for defining them.  Mouse buttons are defined by a
  59. special keymap, `mouse-map'.  See the file `x-mouse.el' for how to bind
  60. mouse clicks.
  61.  
  62.    Character codes 128 and above always display using `\NNN' notation.
  63. For codes 0 through 31, you can choose between `\NNN' and `^C' by
  64. setting the variable `ctl-arrow'; but that is the only thing you can
  65. specify about how character codes should display.
  66.  
  67.    You can't refer to files on other machines using special "magic"
  68. file names.  Instead, you must use the `ftp' library with commands such
  69. as `M-x ftp-find-file' and `M-x ftp-write-file'.
  70.  
  71.    The character for terminating an incremental search is now ESC, not
  72. RET as in Emacs 19.  If you type RET, that searches for a newline;
  73. thus, you can insert a newline in the search string just as you would
  74. insert it in the text.
  75.  
  76. Key Binding Changes
  77. ===================
  78.  
  79.    The key for `backward-paragraph' is now `M-['.  The key for
  80. `forward-paragraph' is now `M-]'.
  81.  
  82.    The command `repeat-complex-command' is now on `C-x ESC'.
  83.  
  84.    The register commands have different key bindings:
  85.  
  86. `C-x /'
  87.      `point-to-register'
  88.  
  89. `C-x j'
  90.      `jump-to-register'
  91.  
  92. `C-x x'
  93.      `copy-to-register'
  94.  
  95. `C-x g'
  96.      `insert-register'
  97.  
  98. `C-x r'
  99.      `copy-rectangle-to-register'
  100.  
  101.    The narrowing commands have also been moved:
  102.  
  103. `C-x n'
  104.      `narrow-to-region'
  105.  
  106. `C-x p'
  107.      `narrow-to-page'
  108.  
  109. `C-x w'
  110.      `widen'
  111.  
  112.    And the abbrev commands as well:
  113.  
  114. `C-x C-a'
  115.      `add-mode-abbrev'
  116.  
  117. `C-x +'
  118.      `add-global-abbrev'
  119.  
  120. `C-x C-h'
  121.      `inverse-add-mode-abbrev'
  122.  
  123. `C-x -'
  124.      `inverse-add-global-abbrev'
  125.  
  126. `C-x `'
  127.      `expand-abbrev'
  128.  
  129.    There are no key bindings for the rectangle commands.
  130.  
  131.    `C-x a' now runs the command `append-to-buffer'.
  132.  
  133.    The key bindings `C-x 4 r' and `C-x 4 C-o' do not exist.
  134.  
  135.    The help commands `C-h C-f', `C-h C-k' and `C-h p' do not exist in
  136. Emacs 18.
  137.  
  138.    The command `C-M-l' (`reposition-window') is absent.  Likewise
  139. `C-M-r' (`isearch-backward-regexp').
  140.  
  141.    The "two column" commands starting with `C-x 6' don't exist in Emacs
  142. 18.
  143.  
  144.    The TeX mode bindings of `C-c {' and `C-c }' have been moved to
  145. `M-{' and `M-}'.  (These commands are `up-list' and
  146. `tex-insert-braces'; they are the TeX equivalents of `M-(' and `M-)'.)
  147.  
  148. Incremental Search Changes
  149. ==========================
  150.  
  151.    As mentioned above, the character for terminating an incremental
  152. search is now ESC, not RET as in Emacs 19.  If you type RET, that
  153. searches for a newline; thus, you can insert a newline in the search
  154. string just as you would insert it in the text.
  155.  
  156.    There is no ring of previous search strings in Emacs 18.  You can
  157. reuse the most recent search string, but that's all.
  158.  
  159.    If `case-fold-search' is non-`nil', then incremental search is
  160. *always* case-insensitive.  Typing an upper-case letter in the search
  161. string has no effect on this.
  162.  
  163.    Spaces in the incremental search string match only spaces.
  164.  
  165.    The meanings of the special search characters are no longer
  166. controlled by a keymap.  Instead, particular variables named
  167. `search-...-char' specify the character that should have a particular
  168. function.  For example, `C-s' repeats the search because the value of
  169. `search-repeat-char' is `?\C-s'.
  170.  
  171. Editing Command Changes
  172. =======================
  173.  
  174.    `C-n' (`next-line') does not check the variable
  175. `next-line-add-newlines'.
  176.  
  177.    The sexp commands such as `C-M-f' no longer know anything about
  178. comments, in modes such as Lisp mode where the end of a comment is the
  179. end of the line.  They treat the text inside a comment as if it were
  180. actual code.  If comments containing unbalanced parentheses cause
  181. trouble, you can use the commands `C-M-n' and `C-M-p', which do ignore
  182. comments.
  183.  
  184.    You can't store file names in registers, and there are no frame
  185. configurations at all.  The command `M-x string-rectangle' does not
  186. exist either.
  187.  
  188.    The undo command in Emacs 18 is not careful about where to leave
  189. point when you undo a deletion.  It ends up at one end or the other of
  190. the text just undeleted.  You must be on the lookout for this, and move
  191. point appropriately.
  192.  
  193.    Kill commands do nothing useful in read-only buffers.  They just
  194. beep.
  195.  
  196.    `M-z C' in Emacs 18 kills up to but not including the first
  197. occurrence of C.  If C does not occur in the buffer after point, `M-z'
  198. kills the whole rest of the buffer.
  199.  
  200.    The function `erase-buffer' is not a command in Emacs 18.  You can
  201. call it from a Lisp program, but not interactively.  The motivation for
  202. this is to protect you from accidentally deleting (not killing) the
  203. entire text of a buffer that you want to keep.  With subsequent changes
  204. in even earlier Emacs versions (such as version 18.54), you might be
  205. unable to undo the `erase-buffer'.
  206.  
  207.    `M-x fill-nonuniform-paragraphs' and Adaptive Fill mode do not exist.
  208.  
  209. Other Brief Notes
  210. =================
  211.  
  212.    Outline mode exists only as a major mode, not as a minor mode.
  213.  
  214.    `M-!' (`shell-command') always runs the command synchronously, even
  215. if the command ends with `&'.
  216.  
  217.    Emacs 18 has no special mode for change log files.  It is a good idea
  218. to use Indented Text mode, and specify 8 as the value of the variable
  219. `left-margin'.
  220.  
  221.    The command `M-x comment-region' does not exist.  The command `M-x
  222. super-apropos' does not exist.
  223.  
  224.    `C-x q' (`kbd-macro-query') now uses `C-d' to terminate all
  225. iterations of the keyboard macro, rather than ESC.
  226.  
  227.    The `M-x setenv' command is missing in Emacs 18.
  228.  
  229.    `M-$' now uses the Unix spell program instead of the GNU program
  230. Ispell.  If the word around point is a misspelling, it asks you for a
  231. replacement.
  232.  
  233.    To check spelling of larger units of text, use `M-x spell-region' or
  234. `M-x spell-buffer'.  These commands check all words in the specified
  235. piece of text.  For each word that is not correct, they ask you to
  236. specify a replacement, and then replace each occurrence.
  237.  
  238.    `M-x gdb' still exists in Emacs 18.  `M-x dbx' exists, but is
  239. somewhat different (use `C-h m' to find the details).  `M-x sdb' does
  240. not exist at all, but who wants to use SDB?
  241.  
  242.    In Buffer Menu mode, the commands `%' and `C-o' don't work in Emacs
  243. 18.  The `v' command has been eliminated and merged with the `q'
  244. command, which now exits the buffer menu, displaying all the buffers
  245. that you have marked.
  246.  
  247.    The View commands (such as `M-x view-buffer' and `M-x view-file')
  248. now use recursive edits.  When you exit viewing, the recursive edit
  249. returns to its caller.
  250.  
  251.    Emacs 18, like most programs, interprets command line options only
  252. when it is started-not later on.
  253.  
  254.    The variable to control whether files can set local variables is
  255. called `inhibit-local-variables'.  A non-`nil' value means ask the user
  256. before obeying any local variables lists.
  257.  
  258.    The user option for controlling use of the `eval' local variable is
  259. now called `inhibit-local-eval'.  A non-`nil' value means to ask the
  260. user before obeying any `eval' local variable.
  261.  
  262. File Handling Changes
  263. =====================
  264.  
  265.    As mentioned above, you can't refer to files on other machines using
  266. special "magic" file names.  Instead, you must use the `ftp' library
  267. with commands such as `M-x ftp-find-file' and `M-x ftp-write-file'.
  268.  
  269.    When you run `M-x revert-buffer' with no prefix argument, if the
  270. buffer has an auto save file more recent that the visited file,
  271. `revert-buffer' asks whether to revert from the auto save file instead.
  272.  
  273.    When `C-x s' (`save-some-buffers') offers to save each buffer, you
  274. have only two choices: save it, or don't save it.
  275.  
  276.    `M-x recover-file' turns off Auto Save mode in the current buffer.
  277. To turn it on again, use `M-x auto-save-mode'.
  278.  
  279.    The command `M-x rename-uniquely' does not exist; instead, use `M-x
  280. rename-buffer' and try various names until you find one that isn't in
  281. use.  Completion can make this easier.
  282.  
  283.    The directory name abbreviation feature is gone in Emacs 18.
  284.  
  285.    Emacs 18 has no idea of file truenames, and does not try to detect
  286. when you visit a file via a symbolic link.  You should check manually
  287. when you visit a file, so as to edit it in the directory where it is
  288. actually stored.  This way you can make sure that backup files and
  289. change log entries go in the proper directory.
  290.  
  291.    `M-x compare-windows' ignores any prefix argument and always
  292. considers case and whitespace differences significant.  As for the
  293. other ways of comparing files, `M-x diff' and `M-x diff-backup', they
  294. don't exist at all.
  295.  
  296. Mail Changes
  297. ============
  298.  
  299.    `%' is now a word-component character in Mail mode.  This is to be
  300. compatible with Text mode.
  301.  
  302.    The variable `mail-signature' is not meaningful; if you wish to
  303. insert your signature in a mail message, you must type `C-c C-w'.
  304.  
  305.    Mail aliases expand only when you send the message--never when you
  306. type them in.
  307.  
  308.    Rmail now gets new mail into your primary mail file from `~/mbox' as
  309. well as from your system inbox file.  This is handy if you occasionally
  310. check your newest mail with the `mail' program; whatever you have
  311. looked at and saved with `mail' will be brought into Rmail the next
  312. time you run Rmail.
  313.  
  314.    The Rmail summary buffer is now much simpler.  Only a few special
  315. commands are available there: `n', `p', and `j' for motion, `d' and `u'
  316. for deletion, and SPC and DEL for scrolling the message.  To do
  317. anything else, you must go to the Rmail buffer.  Also, changes in the
  318. Rmail buffer don't update the summary; to do that, you must make a new
  319. summary.
  320.  
  321.    The Rmail command `rmail-resend' (accessible via `f' with a prefix
  322. argument in Emacs 19) does not exist in Emacs 18.  Neither does
  323. `rmail-retry-failure' (`M-m' in Emacs 19).
  324.  
  325.    The `e' command is now "expunge", just like `x'.  To edit the
  326. current message, type `w', which works in Emacs 19 as well.  If you
  327. type `e' meaning to edit, and it expunges instead--well, you shouldn't
  328. have deleted those messages if you still wanted them.
  329.  
  330.    The `<' and `b' commands have been removed in Emacs 18.  Likewise
  331. `C-M-t' (`rmail-summarize-by-topic') and `M-x unrmail'.  Rmail in Emacs
  332. 18 is so good, that we can't imagine anyone who has tried it would ever
  333. wish to use another mail reader.
  334.  
  335.    The default output file for `o' is now always the last file that you
  336. used with `o'.  The variable `rmail-output-file-alist' has no special
  337. meaning.
  338.  
  339.    Emacs 18 Rmail does not know anything about Content Length fields in
  340. messages.
  341.  
  342. C Mode Changes
  343. ==============
  344.  
  345.    In C mode, the keys `M-a' and `M-e' now have their usual meanings:
  346. motion by sentences.  This is useful while editing the comments in a C
  347. program, but not useful for editing code.  We hope this will encourage
  348. you to write lots of comments.
  349.  
  350.    The commands `M-x c-up-conditional' and `M-x c-backslash-region' have
  351. been removed entirely in Emacs 18.
  352.  
  353. Compilation Changes
  354. ===================
  355.  
  356.    `M-x compile' now has a much simpler and faster parser for error
  357. messages.  However, it understands fewer different formats for error
  358. messages, and is not as easy to customize.
  359.  
  360.    There is no special mode for compilation buffers.  When you select
  361. the compilation buffer itself, it is just ordinary text.
  362.  
  363.    Speaking of selecting the compilation buffer, you do need to do that
  364. from time to time to see whether the compilation has finished, because
  365. Emacs 18 does not display `Compiling' in the mode line to tell you the
  366. compilation is still going.
  367.  
  368. Shell Mode
  369. ==========
  370.  
  371.    Shell mode in Emacs 18 does nothing special for the keys TAB, `M-?',
  372. `C-a', `C-d'.  The commands `M-x dirs' and `M-x send-invisible' are
  373. also gone.
  374.  
  375.    The history commands `M-p' and so on are not available either;
  376. instead, use `C-c C-y' (`copy-last-shell-input').  This copies the
  377. previous bunch of shell input, and inserts it into the buffer before
  378. point.  No final newline is inserted, and the input copied is not
  379. resubmitted until you type RET.
  380.  
  381.    Use `C-c C-d' to send an "end of file" to the shell process.
  382.  
  383. Dired Changes
  384. =============
  385.  
  386.    For simplicity, Dired in Emacs 18 supports just one kind of mark: the
  387. deletion flag, `*'.  The Emacs 19 Dired commands for flagging files do
  388. work in Emacs 18, but all the other mark-related commands do not.
  389.  
  390.    The Dired subdirectory commands don't exist in Emacs 18.  A Dired
  391. buffer can contain only one directory.  In particular, this means that
  392. the variable `dired-listing-switches' must not contain the `R' option.
  393. (The `F' option is also not allowed.)
  394.  
  395.    The commands for using `find' with Dired have been removed for
  396. simplicity, also.
  397.  
  398.    Emacs 18 Dired provides the following commands for manipulating files
  399. immediately, and no others.  All of these commands apply to the file
  400. listed on the current line.
  401.  
  402. `c'
  403.      Copies the file described on the current line.  You must supply a
  404.      file name to copy to, using the minibuffer.
  405.  
  406. `f'
  407.      Visits the file described on the current line.  It is just like
  408.      typing `C-x C-f' and supplying that file name.  If the file on
  409.      this line is a subdirectory, `f' actually causes Dired to be
  410.      invoked on that subdirectory.
  411.  
  412. `G'
  413.      Change the group of the file described on the current line.
  414.  
  415. `M'
  416.      Change the file mode of the file described on the current line.
  417.  
  418. `o'
  419.      Like `f', but uses another window to display the file's buffer.
  420.      The Dired buffer remains visible in the first window.  This is
  421.      like using `C-x 4 C-f' to visit the file.
  422.  
  423. `O'
  424.      Change the owner of the file described on the current line.  (On
  425.      most systems, you must be a superuser to do this.)
  426.  
  427. `r'
  428.      Renames the file described on the current line.  You must supply a
  429.      file name to rename to, using the minibuffer.
  430.  
  431. `v'
  432.      Views the file described on this line using `M-x view-file'.
  433.      Viewing a file is like visiting it, but is slanted toward moving
  434.      around in the file conveniently and does not allow changing the
  435.      file.
  436.  
  437. 
  438. File: emacs,  Node: Manifesto,  Prev: Antinews,  Up: Top
  439.  
  440. The GNU Manifesto
  441. *****************
  442.  
  443.      The GNU Manifesto which appears below was written by Richard
  444.      Stallman at the beginning of the GNU project, to ask for
  445.      participation and support.  For the first few years, it was
  446.      updated in minor ways to account for developments, but now it
  447.      seems best to leave it unchanged as most people have seen it.
  448.  
  449.      Since that time, we have learned about certain common
  450.      misunderstandings that different wording could help avoid.
  451.      Footnotes help clarify these points.
  452.  
  453.      For up-to-date information about the available GNU software,
  454.      please see the latest issue of the GNU's Bulletin.  The list is
  455.      much too long to include here.
  456.  
  457. What's GNU?  Gnu's Not Unix!
  458. ============================
  459.  
  460.    GNU, which stands for Gnu's Not Unix, is the name for the complete
  461. Unix-compatible software system which I am writing so that I can give it
  462. away free to everyone who can use it.(1) Several other volunteers are
  463. helping me.  Contributions of time, money, programs and equipment are
  464. greatly needed.
  465.  
  466.    So far we have an Emacs text editor with Lisp for writing editor
  467. commands, a source level debugger, a yacc-compatible parser generator,
  468. a linker, and around 35 utilities.  A shell (command interpreter) is
  469. nearly completed.  A new portable optimizing C compiler has compiled
  470. itself and may be released this year.  An initial kernel exists but
  471. many more features are needed to emulate Unix.  When the kernel and
  472. compiler are finished, it will be possible to distribute a GNU system
  473. suitable for program development.  We will use TeX as our text
  474. formatter, but an nroff is being worked on.  We will use the free,
  475. portable X window system as well.  After this we will add a portable
  476. Common Lisp, an Empire game, a spreadsheet, and hundreds of other
  477. things, plus on-line documentation.  We hope to supply, eventually,
  478. everything useful that normally comes with a Unix system, and more.
  479.  
  480.    GNU will be able to run Unix programs, but will not be identical to
  481. Unix.  We will make all improvements that are convenient, based on our
  482. experience with other operating systems.  In particular, we plan to
  483. have longer file names, file version numbers, a crashproof file system,
  484. file name completion perhaps, terminal-independent display support, and
  485. perhaps eventually a Lisp-based window system through which several
  486. Lisp programs and ordinary Unix programs can share a screen.  Both C
  487. and Lisp will be available as system programming languages.  We will
  488. try to support UUCP, MIT Chaosnet, and Internet protocols for
  489. communication.
  490.  
  491.    GNU is aimed initially at machines in the 68000/16000 class with
  492. virtual memory, because they are the easiest machines to make it run
  493. on.  The extra effort to make it run on smaller machines will be left
  494. to someone who wants to use it on them.
  495.  
  496.    To avoid horrible confusion, please pronounce the `G' in the word
  497. `GNU' when it is the name of this project.
  498.  
  499. Why I Must Write GNU
  500. ====================
  501.  
  502.    I consider that the golden rule requires that if I like a program I
  503. must share it with other people who like it.  Software sellers want to
  504. divide the users and conquer them, making each user agree not to share
  505. with others.  I refuse to break solidarity with other users in this
  506. way.  I cannot in good conscience sign a nondisclosure agreement or a
  507. software license agreement.  For years I worked within the Artificial
  508. Intelligence Lab to resist such tendencies and other inhospitalities,
  509. but eventually they had gone too far: I could not remain in an
  510. institution where such things are done for me against my will.
  511.  
  512.    So that I can continue to use computers without dishonor, I have
  513. decided to put together a sufficient body of free software so that I
  514. will be able to get along without any software that is not free.  I
  515. have resigned from the AI lab to deny MIT any legal excuse to prevent
  516. me from giving GNU away.
  517.  
  518. Why GNU Will Be Compatible with Unix
  519. ====================================
  520.  
  521.    Unix is not my ideal system, but it is not too bad.  The essential
  522. features of Unix seem to be good ones, and I think I can fill in what
  523. Unix lacks without spoiling them.  And a system compatible with Unix
  524. would be convenient for many other people to adopt.
  525.  
  526. How GNU Will Be Available
  527. =========================
  528.  
  529.    GNU is not in the public domain.  Everyone will be permitted to
  530. modify and redistribute GNU, but no distributor will be allowed to
  531. restrict its further redistribution.  That is to say, proprietary
  532. modifications will not be allowed.  I want to make sure that all
  533. versions of GNU remain free.
  534.  
  535. Why Many Other Programmers Want to Help
  536. =======================================
  537.  
  538.    I have found many other programmers who are excited about GNU and
  539. want to help.
  540.  
  541.    Many programmers are unhappy about the commercialization of system
  542. software.  It may enable them to make more money, but it requires them
  543. to feel in conflict with other programmers in general rather than feel
  544. as comrades.  The fundamental act of friendship among programmers is the
  545. sharing of programs; marketing arrangements now typically used
  546. essentially forbid programmers to treat others as friends.  The
  547. purchaser of software must choose between friendship and obeying the
  548. law.  Naturally, many decide that friendship is more important.  But
  549. those who believe in law often do not feel at ease with either choice.
  550. They become cynical and think that programming is just a way of making
  551. money.
  552.  
  553.    By working on and using GNU rather than proprietary programs, we can
  554. be hospitable to everyone and obey the law.  In addition, GNU serves as
  555. an example to inspire and a banner to rally others to join us in
  556. sharing.  This can give us a feeling of harmony which is impossible if
  557. we use software that is not free.  For about half the programmers I
  558. talk to, this is an important happiness that money cannot replace.
  559.  
  560. How You Can Contribute
  561. ======================
  562.  
  563.    I am asking computer manufacturers for donations of machines and
  564. money.  I'm asking individuals for donations of programs and work.
  565.  
  566.    One consequence you can expect if you donate machines is that GNU
  567. will run on them at an early date.  The machines should be complete,
  568. ready to use systems, approved for use in a residential area, and not
  569. in need of sophisticated cooling or power.
  570.  
  571.    I have found very many programmers eager to contribute part-time
  572. work for GNU.  For most projects, such part-time distributed work would
  573. be very hard to coordinate; the independently-written parts would not
  574. work together.  But for the particular task of replacing Unix, this
  575. problem is absent.  A complete Unix system contains hundreds of utility
  576. programs, each of which is documented separately.  Most interface
  577. specifications are fixed by Unix compatibility.  If each contributor
  578. can write a compatible replacement for a single Unix utility, and make
  579. it work properly in place of the original on a Unix system, then these
  580. utilities will work right when put together.  Even allowing for Murphy
  581. to create a few unexpected problems, assembling these components will
  582. be a feasible task.  (The kernel will require closer communication and
  583. will be worked on by a small, tight group.)
  584.  
  585.    If I get donations of money, I may be able to hire a few people full
  586. or part time.  The salary won't be high by programmers' standards, but
  587. I'm looking for people for whom building community spirit is as
  588. important as making money.  I view this as a way of enabling dedicated
  589. people to devote their full energies to working on GNU by sparing them
  590. the need to make a living in another way.
  591.  
  592. Why All Computer Users Will Benefit
  593. ===================================
  594.  
  595.    Once GNU is written, everyone will be able to obtain good system
  596. software free, just like air.(2)
  597.  
  598.    This means much more than just saving everyone the price of a Unix
  599. license.  It means that much wasteful duplication of system programming
  600. effort will be avoided.  This effort can go instead into advancing the
  601. state of the art.
  602.  
  603.    Complete system sources will be available to everyone.  As a result,
  604. a user who needs changes in the system will always be free to make them
  605. himself, or hire any available programmer or company to make them for
  606. him.  Users will no longer be at the mercy of one programmer or company
  607. which owns the sources and is in sole position to make changes.
  608.  
  609.    Schools will be able to provide a much more educational environment
  610. by encouraging all students to study and improve the system code.
  611. Harvard's computer lab used to have the policy that no program could be
  612. installed on the system if its sources were not on public display, and
  613. upheld it by actually refusing to install certain programs.  I was very
  614. much inspired by this.
  615.  
  616.    Finally, the overhead of considering who owns the system software
  617. and what one is or is not entitled to do with it will be lifted.
  618.  
  619.    Arrangements to make people pay for using a program, including
  620. licensing of copies, always incur a tremendous cost to society through
  621. the cumbersome mechanisms necessary to figure out how much (that is,
  622. which programs) a person must pay for.  And only a police state can
  623. force everyone to obey them.  Consider a space station where air must
  624. be manufactured at great cost: charging each breather per liter of air
  625. may be fair, but wearing the metered gas mask all day and all night is
  626. intolerable even if everyone can afford to pay the air bill.  And the
  627. TV cameras everywhere to see if you ever take the mask off are
  628. outrageous.  It's better to support the air plant with a head tax and
  629. chuck the masks.
  630.  
  631.    Copying all or parts of a program is as natural to a programmer as
  632. breathing, and as productive.  It ought to be as free.
  633.  
  634. Some Easily Rebutted Objections to GNU's Goals
  635. ==============================================
  636.  
  637.      "Nobody will use it if it is free, because that means they can't
  638.      rely on any support."
  639.  
  640.      "You have to charge for the program to pay for providing the
  641.      support."
  642.  
  643.    If people would rather pay for GNU plus service than get GNU free
  644. without service, a company to provide just service to people who have
  645. obtained GNU free ought to be profitable.(3)
  646.  
  647.    We must distinguish between support in the form of real programming
  648. work and mere handholding.  The former is something one cannot rely on
  649. from a software vendor.  If your problem is not shared by enough
  650. people, the vendor will tell you to get lost.
  651.  
  652.    If your business needs to be able to rely on support, the only way
  653. is to have all the necessary sources and tools.  Then you can hire any
  654. available person to fix your problem; you are not at the mercy of any
  655. individual.  With Unix, the price of sources puts this out of
  656. consideration for most businesses.  With GNU this will be easy.  It is
  657. still possible for there to be no available competent person, but this
  658. problem cannot be blamed on distribution arrangements.  GNU does not
  659. eliminate all the world's problems, only some of them.
  660.  
  661.    Meanwhile, the users who know nothing about computers need
  662. handholding: doing things for them which they could easily do
  663. themselves but don't know how.
  664.  
  665.    Such services could be provided by companies that sell just
  666. hand-holding and repair service.  If it is true that users would rather
  667. spend money and get a product with service, they will also be willing
  668. to buy the service having got the product free.  The service companies
  669. will compete in quality and price; users will not be tied to any
  670. particular one.  Meanwhile, those of us who don't need the service
  671. should be able to use the program without paying for the service.
  672.  
  673.      "You cannot reach many people without advertising, and you must
  674.      charge for the program to support that."
  675.  
  676.      "It's no use advertising a program people can get free."
  677.  
  678.    There are various forms of free or very cheap publicity that can be
  679. used to inform numbers of computer users about something like GNU.  But
  680. it may be true that one can reach more microcomputer users with
  681. advertising.  If this is really so, a business which advertises the
  682. service of copying and mailing GNU for a fee ought to be successful
  683. enough to pay for its advertising and more.  This way, only the users
  684. who benefit from the advertising pay for it.
  685.  
  686.    On the other hand, if many people get GNU from their friends, and
  687. such companies don't succeed, this will show that advertising was not
  688. really necessary to spread GNU.  Why is it that free market advocates
  689. don't want to let the free market decide this?(4)
  690.  
  691.      "My company needs a proprietary operating system to get a
  692.      competitive edge."
  693.  
  694.    GNU will remove operating system software from the realm of
  695. competition.  You will not be able to get an edge in this area, but
  696. neither will your competitors be able to get an edge over you.  You and
  697. they will compete in other areas, while benefiting mutually in this
  698. one.  If your business is selling an operating system, you will not
  699. like GNU, but that's tough on you.  If your business is something else,
  700. GNU can save you from being pushed into the expensive business of
  701. selling operating systems.
  702.  
  703.    I would like to see GNU development supported by gifts from many
  704. manufacturers and users, reducing the cost to each.(5)
  705.  
  706.      "Don't programmers deserve a reward for their creativity?"
  707.  
  708.    If anything deserves a reward, it is social contribution.
  709. Creativity can be a social contribution, but only in so far as society
  710. is free to use the results.  If programmers deserve to be rewarded for
  711. creating innovative programs, by the same token they deserve to be
  712. punished if they restrict the use of these programs.
  713.  
  714.      "Shouldn't a programmer be able to ask for a reward for his
  715.      creativity?"
  716.  
  717.    There is nothing wrong with wanting pay for work, or seeking to
  718. maximize one's income, as long as one does not use means that are
  719. destructive.  But the means customary in the field of software today
  720. are based on destruction.
  721.  
  722.    Extracting money from users of a program by restricting their use of
  723. it is destructive because the restrictions reduce the amount and the
  724. ways that the program can be used.  This reduces the amount of wealth
  725. that humanity derives from the program.  When there is a deliberate
  726. choice to restrict, the harmful consequences are deliberate destruction.
  727.  
  728.    The reason a good citizen does not use such destructive means to
  729. become wealthier is that, if everyone did so, we would all become
  730. poorer from the mutual destructiveness.  This is Kantian ethics; or,
  731. the Golden Rule.  Since I do not like the consequences that result if
  732. everyone hoards information, I am required to consider it wrong for one
  733. to do so.  Specifically, the desire to be rewarded for one's creativity
  734. does not justify depriving the world in general of all or part of that
  735. creativity.
  736.  
  737.      "Won't programmers starve?"
  738.  
  739.    I could answer that nobody is forced to be a programmer.  Most of us
  740. cannot manage to get any money for standing on the street and making
  741. faces.  But we are not, as a result, condemned to spend our lives
  742. standing on the street making faces, and starving.  We do something
  743. else.
  744.  
  745.    But that is the wrong answer because it accepts the questioner's
  746. implicit assumption: that without ownership of software, programmers
  747. cannot possibly be paid a cent.  Supposedly it is all or nothing.
  748.  
  749.    The real reason programmers will not starve is that it will still be
  750. possible for them to get paid for programming; just not paid as much as
  751. now.
  752.  
  753.    Restricting copying is not the only basis for business in software.
  754. It is the most common basis because it brings in the most money.  If it
  755. were prohibited, or rejected by the customer, software business would
  756. move to other bases of organization which are now used less often.
  757. There are always numerous ways to organize any kind of business.
  758.  
  759.    Probably programming will not be as lucrative on the new basis as it
  760. is now.  But that is not an argument against the change.  It is not
  761. considered an injustice that sales clerks make the salaries that they
  762. now do.  If programmers made the same, that would not be an injustice
  763. either.  (In practice they would still make considerably more than
  764. that.)
  765.  
  766.      "Don't people have a right to control how their creativity is
  767.      used?"
  768.  
  769.    "Control over the use of one's ideas" really constitutes control over
  770. other people's lives; and it is usually used to make their lives more
  771. difficult.
  772.  
  773.    People who have studied the issue of intellectual property rights
  774. carefully (such as lawyers) say that there is no intrinsic right to
  775. intellectual property.  The kinds of supposed intellectual property
  776. rights that the government recognizes were created by specific acts of
  777. legislation for specific purposes.
  778.  
  779.    For example, the patent system was established to encourage
  780. inventors to disclose the details of their inventions.  Its purpose was
  781. to help society rather than to help inventors.  At the time, the life
  782. span of 17 years for a patent was short compared with the rate of
  783. advance of the state of the art.  Since patents are an issue only among
  784. manufacturers, for whom the cost and effort of a license agreement are
  785. small compared with setting up production, the patents often do not do
  786. much harm.  They do not obstruct most individuals who use patented
  787. products.
  788.  
  789.    The idea of copyright did not exist in ancient times, when authors
  790. frequently copied other authors at length in works of non-fiction.  This
  791. practice was useful, and is the only way many authors' works have
  792. survived even in part.  The copyright system was created expressly for
  793. the purpose of encouraging authorship.  In the domain for which it was
  794. invented--books, which could be copied economically only on a printing
  795. press--it did little harm, and did not obstruct most of the individuals
  796. who read the books.
  797.  
  798.    All intellectual property rights are just licenses granted by society
  799. because it was thought, rightly or wrongly, that society as a whole
  800. would benefit by granting them.  But in any particular situation, we
  801. have to ask: are we really better off granting such license?  What kind
  802. of act are we licensing a person to do?
  803.  
  804.    The case of programs today is very different from that of books a
  805. hundred years ago.  The fact that the easiest way to copy a program is
  806. from one neighbor to another, the fact that a program has both source
  807. code and object code which are distinct, and the fact that a program is
  808. used rather than read and enjoyed, combine to create a situation in
  809. which a person who enforces a copyright is harming society as a whole
  810. both materially and spiritually; in which a person should not do so
  811. regardless of whether the law enables him to.
  812.  
  813.      "Competition makes things get done better."
  814.  
  815.    The paradigm of competition is a race: by rewarding the winner, we
  816. encourage everyone to run faster.  When capitalism really works this
  817. way, it does a good job; but its defenders are wrong in assuming it
  818. always works this way.  If the runners forget why the reward is offered
  819. and become intent on winning, no matter how, they may find other
  820. strategies--such as, attacking other runners.  If the runners get into
  821. a fist fight, they will all finish late.
  822.  
  823.    Proprietary and secret software is the moral equivalent of runners
  824. in a fist fight.  Sad to say, the only referee we've got does not seem
  825. to object to fights; he just regulates them ("For every ten yards you
  826. run, you can fire one shot").  He really ought to break them up, and
  827. penalize runners for even trying to fight.
  828.  
  829.      "Won't everyone stop programming without a monetary incentive?"
  830.  
  831.    Actually, many people will program with absolutely no monetary
  832. incentive.  Programming has an irresistible fascination for some
  833. people, usually the people who are best at it.  There is no shortage of
  834. professional musicians who keep at it even though they have no hope of
  835. making a living that way.
  836.  
  837.    But really this question, though commonly asked, is not appropriate
  838. to the situation.  Pay for programmers will not disappear, only become
  839. less.  So the right question is, will anyone program with a reduced
  840. monetary incentive?  My experience shows that they will.
  841.  
  842.    For more than ten years, many of the world's best programmers worked
  843. at the Artificial Intelligence Lab for far less money than they could
  844. have had anywhere else.  They got many kinds of non-monetary rewards:
  845. fame and appreciation, for example.  And creativity is also fun, a
  846. reward in itself.
  847.  
  848.    Then most of them left when offered a chance to do the same
  849. interesting work for a lot of money.
  850.  
  851.    What the facts show is that people will program for reasons other
  852. than riches; but if given a chance to make a lot of money as well, they
  853. will come to expect and demand it.  Low-paying organizations do poorly
  854. in competition with high-paying ones, but they do not have to do badly
  855. if the high-paying ones are banned.
  856.  
  857.      "We need the programmers desperately.  If they demand that we stop
  858.      helping our neighbors, we have to obey."
  859.  
  860.    You're never so desperate that you have to obey this sort of demand.
  861. Remember: millions for defense, but not a cent for tribute!
  862.  
  863.      "Programmers need to make a living somehow."
  864.  
  865.    In the short run, this is true.  However, there are plenty of ways
  866. that programmers could make a living without selling the right to use a
  867. program.  This way is customary now because it brings programmers and
  868. businessmen the most money, not because it is the only way to make a
  869. living.  It is easy to find other ways if you want to find them.  Here
  870. are a number of examples.
  871.  
  872.    A manufacturer introducing a new computer will pay for the porting of
  873. operating systems onto the new hardware.
  874.  
  875.    The sale of teaching, hand-holding and maintenance services could
  876. also employ programmers.
  877.  
  878.    People with new ideas could distribute programs as freeware, asking
  879. for donations from satisfied users, or selling hand-holding services.
  880. I have met people who are already working this way successfully.
  881.  
  882.    Users with related needs can form users' groups, and pay dues.  A
  883. group would contract with programming companies to write programs that
  884. the group's members would like to use.
  885.  
  886.    All sorts of development can be funded with a Software Tax:
  887.  
  888.      Suppose everyone who buys a computer has to pay x percent of the
  889.      price as a software tax.  The government gives this to an agency
  890.      like the NSF to spend on software development.
  891.  
  892.      But if the computer buyer makes a donation to software development
  893.      himself, he can take a credit against the tax.  He can donate to
  894.      the project of his own choosing--often, chosen because he hopes to
  895.      use the results when it is done.  He can take a credit for any
  896.      amount of donation up to the total tax he had to pay.
  897.  
  898.      The total tax rate could be decided by a vote of the payers of the
  899.      tax, weighted according to the amount they will be taxed on.
  900.  
  901.      The consequences:
  902.  
  903.         * The computer-using community supports software development.
  904.  
  905.         * This community decides what level of support is needed.
  906.  
  907.         * Users who care which projects their share is spent on can
  908.           choose this for themselves.
  909.  
  910.    In the long run, making programs free is a step toward the
  911. post-scarcity world, where nobody will have to work very hard just to
  912. make a living.  People will be free to devote themselves to activities
  913. that are fun, such as programming, after spending the necessary ten
  914. hours a week on required tasks such as legislation, family counseling,
  915. robot repair and asteroid prospecting.  There will be no need to be
  916. able to make a living from programming.
  917.  
  918.    We have already greatly reduced the amount of work that the whole
  919. society must do for its actual productivity, but only a little of this
  920. has translated itself into leisure for workers because much
  921. nonproductive activity is required to accompany productive activity.
  922. The main causes of this are bureaucracy and isometric struggles against
  923. competition.  Free software will greatly reduce these drains in the
  924. area of software production.  We must do this, in order for technical
  925. gains in productivity to translate into less work for us.
  926.  
  927.    ---------- Footnotes ----------
  928.  
  929.    (1)  The wording here was careless.  The intention was that nobody
  930. would have to pay for *permission* to use the GNU system.  But the
  931. words don't make this clear, and people often interpret them as saying
  932. that copies of GNU should always be distributed at little or no charge.
  933. That was never the intent; later on, the manifesto mentions the
  934. possibility of companies providing the service of distribution for a
  935. profit.  Subsequently I have learned to distinguish carefully between
  936. "free" in the sense of freedom and "free" in the sense of price.  Free
  937. software is software that users have the freedom to distribute and
  938. change.  Some users may obtain copies at no charge, while others pay to
  939. obtain copies--and if the funds help support improving the software, so
  940. much the better.  The important thing is that everyone who has a copy
  941. has the freedom to cooperate with others in using it.
  942.  
  943.    (2)  This is another place I failed to distinguish carefully between
  944. the two different meanings of "free".  The statement as it stands is
  945. not false--you can get copies of GNU software at no charge, from your
  946. friends or over the net.  But it does suggest the wrong idea.
  947.  
  948.    (3)  Several such companies now exist.
  949.  
  950.    (4)  The Free Software Foundation raises most of its funds from a
  951. distribution service, although it is a charity rather than a company.
  952. If *no one* chooses to obtain copies by ordering the from the FSF, it
  953. will be unable to do its work.  But this does not mean that proprietary
  954. restrictions are justified to force every user to pay.  If a small
  955. fraction of all the users order copies from the FSF, that is sufficient
  956. to keep the FSF afloat.  So we ask users to choose to support us in
  957. this way.  Have you done your part?
  958.  
  959.    (5)  A group of computer companies recently pooled funds to support
  960. maintenance of the GNU C Compiler.
  961.  
  962.