home *** CD-ROM | disk | FTP | other *** search
/ Dr. CD ROM (Annual Premium Edition) / premium.zip / premium / IBMOS2_1 / E17INFO.ZIP / emacs / 19.17 / info / emacs-18 (.txt) < prev    next >
GNU Info File  |  1993-07-18  |  42KB  |  729 lines

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