Emacs

From Wikipedia, the free encyclopedia

Jump to: navigation, search
Emacs
Emacs logo

GNU Emacs 22.0.91.1 with multiple buffers and syntax highlighting for LaTeX, C#, and C.
Design by Richard Stallman
Developed by the GNU project
Initial release 1976, 32–33 years ago
Stable release 22.3  (2008-09-05; 210 days ago) [+/−]
Preview release 23  (n/a) [+/−]
Written in C and Emacs lisp
Operating system Cross-platform
Available in English
Type Text editor
License GNU General Public License
Website http://www.gnu.org/software/emacs/
Emacs
GNU Emacs  · XEmacs  · SXEmacs  · Aquamacs Emacs
Emacs Lisp
Freemacs · JOVE · mg · MicroEMACS · Zile

Emacs is a class of feature-rich text editors, usually characterized by their extensibility. Emacs has, perhaps, more editing commands compared to other editors, numbering over 1,000 commands. It also allows the user to combine these commands into macros to automate work.

Development began in the mid-70s and continues actively as of 2009. Emacs text editors are most popular with technically proficient computer users and computer programmers. The most popular version of Emacs is GNU Emacs, a part of the GNU project, which is commonly referred to simply as "Emacs".

The GNU Emacs manual describes it as "the extensible, customizable, self-documenting, real-time display editor." It is also the most ported of the implementations of Emacs. As of September 2008, the latest stable release of GNU Emacs is version 22.3.

Aside from GNU Emacs, another version of Emacs in common use, XEmacs, forked from GNU Emacs in 1991. XEmacs has remained mostly compatible and continues to use the same extension language, Emacs Lisp, as GNU Emacs. Large parts of GNU Emacs and XEmacs are written in Emacs Lisp, so the extensibility of Emacs' features is deep.

The original EMACS consisted of a set of Editor MACroS for the TECO editor. It was written in 1976 by Richard Stallman, initially together with Guy L. Steele, Jr..[1] It was inspired by the ideas of TECMAC and TMACS, a pair of TECO-macro editors written by Steele, Dave Moon, Richard Greenblatt, Charles Frankston, and others.[2]

In Unix culture, Emacs became one of the two main contenders in the traditional editor wars, the other being vi. The word "emacs" is often pluralized as emacsen, by analogy with boxen (itself used by analogy with oxen) and VAXen.[3]

Contents

[edit] History

Emacs development began at the MIT AI Lab during the 1970s. Before its introduction, the Incompatible Timesharing System (ITS), the operating system on the AI Lab's PDP-6 and PDP-10 computers, featured a default line editor known as Tape Editor and Corrector (TECO) (later changed to Text Editor and Corrector, the 'tape' referring to paper tape. Unlike most modern text editors, TECO has separate modes which the user used to either add text, edit existing text, or display the document. Typing characters into TECO did not place those characters directly into a document; one had to write a series of instructions in the TECO command language telling it to enter the required characters, during which time the edited text was not displayed on the screen. This behavior is similar to the program ed.

Richard Stallman visited the Stanford AI Lab in 1972 or 1974 and saw the lab's "E" editor, written by Fred Wright.[citation needed] The editor had an intuitive WYSIWYG behavior as used almost universally by modern text editors, which impressed Stallman. He returned to MIT where Carl Mikkelsen, a hacker at the AI Lab, had added a combined display+editing mode called "Control-R" to TECO, allowing the screen display to be updated each time the user entered a keystroke. Stallman reimplemented this mode to run efficiently, then added a macro feature to the TECO display-editing mode, allowing the user to redefine any keystroke to run a TECO program.[citation needed]

E had another feature which TECO lacked: random-access editing. Since TECO's original implementation was designed for editing paper tape on the PDP-1, it was a page-sequential editor. Typical editing could only be done on one page at a time, in the order of the pages in the file. To provide random access in Emacs, Stallman decided not to adopt E's approach of structuring the file for page-random access on disk, but instead modified TECO to handle large buffers more efficiently, and then changed its file management method to read, edit, and write the entire file as a single buffer. Almost all modern editors use this approach.

The new version of TECO quickly became popular at the AI Lab, and soon there accumulated a large collection of custom macros, whose names often ended in "MAC" or "MACS", which stood for "macro". Two years later, Guy Steele took on the project of unifying the overly diverse macros into a single set. After one night of joint hacking by Steele and Stallman, the latter finished the implementation, which included facilities for extending and documenting the new macro set.[citation needed] The resulting system was called EMACS, which stood for "Editing MACroS". An alternative version is that EMACS stood for "E with MACroS", a dig at E's lack of a macro capability.[citation needed] According to Stallman, he picked the name Emacs "because <E> was not in use as an abbreviation on ITS at the time."[4] (It has also been noted that "Emack & Bolio's" was the name of a popular ice cream store in Cambridge, within walking distance of MIT. A text-formatting program used on ITS was later named BOLIO by Dave Moon, who frequented that store. However, Stallman did not like that ice cream, and did not even know of it when choosing the name "Emacs"; this ignorance is the basis of a hacker koan, Emacs and Bolio).[citation needed]

Stallman saw a problem in too much customization and de-facto forking and set certain conditions for usage. He later wrote:

"EMACS was distributed on a basis of communal sharing, which means all improvements must be given back to me to be incorporated and distributed."

The original Emacs, like TECO, ran only on the PDP line of computers. It behaved sufficiently differently from TECO to be considered a text editor in its own right. It quickly became the standard editing program on ITS. It was also ported from ITS to the Tenex and TOPS-20 operating systems by Michael McMahon, but not Unix, initially. Other contributors to early versions of Emacs include Kent Pitman, Earl Killian, and Eugene Ciccarelli. By 1979, Emacs was the editor used by most people in MIT's AI lab and its Computer Science lab.[5]

[edit] Other early implementations

Programmers wrote many Emacs-like editors in the following years for other computer systems, including SINE (Sine is not EMACS), EINE ("EINE Is Not EMACS") and ZWEI ("ZWEI Was EINE Initially", for the Lisp machine), which were written by Michael McMahon and Daniel Weinreb. ("Eine" and "zwei" are German for "one" and "two".) Weinreb's EINE was the first Emacs written in Lisp. In 1978, Bernard Greenberg wrote Multics Emacs at Honeywell's Cambridge Information Systems Lab. Many versions of Emacs, including GNU Emacs, later adopted Lisp as an extension language.

James Gosling (who later invented NeWS and the Java programming language) wrote the first Emacs-like editor to run on Unix: Gosling Emacs, in 1981. It was written in C and, notably, used a language with Lisp-like syntax known as Mocklisp as an extension language. In 1984 it was proprietary software.

[edit] GNU Emacs

In 1984, Stallman began working on GNU Emacs to produce a free software alternative to Gosling Emacs; initially he based it on Gosling Emacs, but he replaced the Mocklisp interpreter at its heart with a true Lisp interpreter, which entailed replacing nearly all of the code. It became the first program released by the nascent GNU project. GNU Emacs is written in C and provides Emacs Lisp (itself implemented in C) as an extension language. Version 13, the first public release, was made on March 20, 1985. The first widely distributed version of GNU Emacs was 15.34, which appeared later in 1985. Versions 2 to 12 never existed. Earlier versions of GNU Emacs had been numbered "1.x.x", but sometime after version 1.12 the decision was made to drop the "1", as it was thought the major number would never change.

GNU Emacs was later ported to Unix. Since it had more features than Gosling Emacs, in particular a full-featured Lisp as extension language, it soon replaced Gosling Emacs as the de facto Emacs editor on Unix.

Until 1999, GNU Emacs development was relatively closed, to the point where it was used as an example of the "Cathedral" development style in The Cathedral and the Bazaar. The project has since adopted a public development mailing list and anonymous CVS access. Development takes place in a single CVS trunk, which was at version 23.0.60 as of mid-2008.

Richard Stallman remained the maintainer of GNU Emacs through most of the time, but took several breaks. The latest one persists and started 2008, when maintenance was handed over to Stefan Monnier and Chong Yidong.[6]

[edit] Release history

Version Release date Significant changes
22.3 September 5, 2008 GTK+ toolkit support, enhanced mouse support, a new keyboard macro system, improved Unicode support, and drag-and-drop operation on X, plus many new modes and packages including a graphical user interface to GDB, Python mode, the mathematical tool Calc, and the remote file editing system Tramp.
22.2 March 26, 2008 New support for the Bazaar, Mercurial, Monotone, and Git version control systems
New major modes for editing CSS, Vera, Verilog, and BibTeX style files
Improved scrolling support in Image mode
22.1 June 2, 2007 Support for the GTK+ graphical toolkit
Support for Drag-and-drop on X
Support for images, toolbar, and tooltips
Unicode support
Support for Mac OS X Carbon UI
21.1 October 20, 2001 Support for displaying colors and some other attributes on terminals
Built-in horizontal scrolling
Sound support
Wheel mouse support
Improved menu-bar layout
20.1 September 17, 1997 Multi-lingual support
19.28 November 1, 1994 Support for multiple frames using the X Windowing System
New interface for version control systems, called VC
New hexl mode, which is a hexadecimal editing mode
18.24 October 2, 1986
17.36 December 20, 1985 Backup file version numbers
16.56 July 15, 1985
15.10 April 11, 1985
13.0? March 20, 1985

[edit] XEmacs

Beginning in 1991, Jamie Zawinski and others at Lucid Inc. developed Lucid Emacs, based on an early alpha version of GNU Emacs 19. The codebases soon diverged, and the separate development teams gave up trying to merge them back into a single program.[7] This was one of the most famous early forks of a free software program. Lucid Emacs has since been renamed XEmacs; it remains the second most popular variety of Emacs, after GNU Emacs.

[edit] Other modern forks and clones

Many other derivatives of the GNU Emacs have emerged, such as a Japanese version for MS Windows called Meadow[8] Steve Youngs' fork of XEmacs called SXEmacs,[9] and a version which focuses on integrating with the Apple Macintosh user interface called Aquamacs.

Emacs clones, not based on GNU Emacs source code, have proliferated. One motivation for writing clones was that GNU Emacs was initially targeted at computers with a 32-bit flat address space, and at least 1 MiB of RAM. At a time when such computers were considered high end, this left an opening for smaller reimplementations. Some notable modern clones include:

  • MicroEMACS, originally written by Dave Conroy and further developed by Daniel Lawrence, which exists in many variations. The editor is used by Linus Torvalds.[10]
  • mg, originally called MicroGNUEmacs (and later mg2a), a public-domain offshoot of MicroEMACS intended to more closely resemble GNU Emacs. Now installed by default on OpenBSD.
  • NotGNU [11], a small, fast, freeware implementation for DOS, Win16, Win32 and Linux by Julie Melbin.
  • JOVE (Jonathan's Own Version of Emacs), a non-programmable Emacs implementation for UNIX-like systems by Jonathan Payne.
  • Freemacs, a DOS version with an extension language based on text macro expansion, all within the original 64 KiB flat memory limit.
  • MINCE (MINCE Is Not Complete Emacs), a version for CP/M from Mark of the Unicorn. MINCE evolved into Final Word, which eventually became the Sprint word processor from Borland.[citation needed]
  • Zile
  • Climacs, an Emacs-variant implemented in Common Lisp and more influenced by Zmacs than GNU Emacs.
  • Yi, an editor written and extensible in Haskell having an emulation mode for Emacs.
  • QEmacs [12], small editor by Fabrice Bellard with UTF8 support and support for fast editing of large files (hundreds of MiB).

[edit] Licensing

The terms of the GNU General Public License (GPL) make Emacs source code, including both the C and Emacs Lisp components, freely available for examination, modification, and redistribution.

For GNU Emacs (and GNU packages in general), it remains policy to accept significant code contributions only if the copyright holder executes a suitable disclaimer or assignment of their copyright interest to the Free Software Foundation, although one exception to this policy occurred in the case of MULE (MULtilingual Extension, which handles Unicode and more advanced methods of dealing with other languages' scripts) code[13] since the copyright holder is the Japanese government and copyright assignment was not possible. This does not apply to extremely minor code contributions of less than 10 lines or bug fixes. This policy is in place so that FSF can defend the software in court if its copyleft licence is violated.

Older versions of the GNU Emacs documentation appeared under an ad-hoc license which required the inclusion of certain text in any modified copy. Attorney Mark A. Fischer worked to draft the original GNU Emacs license with Richard Stallman in 1985. In the GNU Emacs user's manual, for example, this included how to obtain GNU Emacs and Richard Stallman's political essay The GNU Manifesto. The XEmacs manuals, which were inherited from older GNU Emacs manuals when the fork occurred, have the same license. Newer versions of the documentation use the GNU Free Documentation License and makes use of "invariant sections" to require the inclusion of the same documents, additionally requiring that the manuals proclaim themselves as GNU Manuals.

[edit] Features

Emacs is primarily a text editor, not a word processor; it concentrates on manipulating pieces of text, rather than manipulating the typeface (the "font") of the characters or printing documents (though Emacs can do these as well). Emacs provides commands to manipulate words and paragraphs (deleting them, moving them, moving through them, and so forth), syntax highlighting for making source code easier to read, and "keyboard macros" for performing arbitrary batches of editing commands defined by the user.

GNU Emacs is a "real-time display" editor in that edits get displayed on the screen as they occur. This is standard behaviour for modern text editors.

[edit] Customizable

Almost all of the functionality in the GNU Emacs editor, ranging from basic editing operations such as the insertion of characters into a document to the configuration of the user interface, comes under the control of a dialect of the Lisp programming language known as Emacs Lisp. This unique and unusual design provides many of the features found in Emacs. In this Lisp environment, variables and even entire functions can be modified without having to recompile or even restart the editor.

Users have three primary ways of customizing Emacs:

  1. the customize extension, which allows the user to set common customization variables, such as the colour scheme, using a graphical interface, etc. This is intended for Emacs beginners who do not want to work with Emacs Lisp code.
  2. collecting keystrokes into macros and replaying them to automate complex, repetitive tasks. This is often done on an ad-hoc basis, with each macro discarded after use, although macros can be saved and invoked later.
  3. using Emacs Lisp. Usually, user-supplied Emacs Lisp code is stored in a file called .emacs and loaded when Emacs starts up. The .emacs file is often used to set variables and key bindings different from the default setting, and to define new commands that the user finds convenient. Many advanced users have .emacs files hundreds of lines long, with idiosyncratic customizations that cause Emacs to diverge wildly from the default behavior.

[edit] Extensible

As a result, the behavior of Emacs can be modified almost without limit, either directly by the user, or by loading Emacs Lisp code known variously as "libraries", "packages", or "extensions".

Emacs contains a large number of Emacs Lisp libraries, and users can find more "third-party" libraries on the Internet. Emacs can be used as an Integrated Development Environment (IDE), allowing programmers to edit, compile, and debug their code within a single interface. Other libraries perform more unusual functions. A few examples include:

Many third-party libraries exist on the Internet; for example, there is a library called wikipedia-mode for editing Wikipedia articles. There is even a Usenet newsgroup, gnu.emacs.sources, which is used for posting new libraries. Some third-party libraries eventually make their way into Emacs, thus becoming a "standard" library.

[edit] Performance

The downside to Emacs' Lisp-based design comes in the form of a performance overhead resulting from loading and interpreting the Lisp code. On the systems in which Emacs was first implemented, Emacs often ran noticeably slower than rival text editors. Several joke backronyms allude to this: Eight Megabytes And Constantly Swapping (from the days when eight megabytes was a lot of memory), Emacs Makes A Computer Slow, Eventually Mallocs All Computer Storage, and Eventually Makes All Computers Sick. However, modern computers are fast enough that Emacs is seldom felt to be slow. In fact, Emacs starts up more quickly than most modern word processors[citation needed]. Other joke backronyms describe the user interface: Escape Meta Alt Control Shift.

[edit] Platforms

Emacs has become one of the most ported non-trivial computer programs. It runs on a wide variety of operating systems, including most Unix-like systems (GNU/Linux, the various BSDs, Solaris, AIX, IRIX, Mac OS X,[14][15] etc.), MS-DOS, Microsoft Windows[16][17][18] and OpenVMS. Unix systems, both free and proprietary, frequently provide Emacs bundled with the operating system.

Emacs runs both on text terminals and in graphical user interface (GUI) environments. On Unix-like operating systems, Emacs uses the X Window System to produce its GUI, either directly or using a "widget toolkit" such as Motif, LessTif, or GTK+. Emacs can also use the native graphical systems of Mac OS X (using the Carbon or Cocoa interfaces) and Microsoft Windows. The graphical interface provides menubars, toolbars, scrollbars, and context menus.

[edit] Editing modes

Emacs adapts its behavior to the types of text it edits by entering editing modes called "major modes". Defined major modes exist for ordinary text files, source code for many programming languages, HTML documents, TeX and LaTeX documents, and many other types of text. Each major mode involves an Emacs Lisp program that extends the editor to behave more conveniently for the particular type of text it covers. Typical major modes will provide some or all of the following common features:

  • Syntax highlighting (called "font lock" in Emacs): using different fonts or colors to display keywords, comments, and so forth.
  • Automatic indentation: maintaining consistent formatting within a file.
  • "Electric" features, i.e. the automatic insertion of elements such as spaces, newlines, and parentheses which the structure of the document requires.
  • Special editing commands: for example, major modes for programming languages usually define commands to jump to the beginning and the end of a function, while major modes for markup languages such as XML provide commands to validate documents or insert closing tags.

Programmers can add extra features by using "minor modes". While a buffer can use only one major mode at a time, multiple minor modes can operate simultaneously. These may affect documents directly. For example, the major mode for the C programming language defines a different minor mode for each of the popular indent styles. Or, they may affect the editing environment instead. For example, "Winner mode" adds the ability to undo changes to the window configuration, while "MMM-mode" adds the ability to use more than one major mode in a single file, as required in common cases such as editing an HTML document with embedded CSS and JavaScript.

The SLIME major mode extends Emacs into a development environment for Common Lisp. With SLIME the Emacs editor communicates with a (possibly remote) Common Lisp system over a special communication protocol and provides tools like a Read-Eval-Print-Loop, an data inspector and a debugger.

[edit] Self-documenting

The first Emacs included an innovative help library that can display the documentation for every single command, variable, and internal function. (It may have originated this technique.) Because of this, Emacs-proponents described the tools as "self-documenting" — in that it presents its own documentation, not only of its normal features but also of its current state, to the user. For example, the user can find out about the command bound to a particular keystroke simply by entering C-h k (which runs the command describe-key), followed by the keystroke. Each function included a documentation string, specifically to be used for showing to the user on request. The practice of giving functions documentation strings subsequently spread to various programming languages such as Lisp and Java.

Further, through Emacs's help system, users can be taken to the actual code for each function — whether a built-in library or an installed third-party library.

Emacs also has a built-in tutorial. When Emacs starts with no file to edit, it displays instructions for performing simple editing commands and invoking the tutorial.

[edit] Manuals

Apart from the built-in documentation, Emacs has an unusually long, detailed and well-written manual. An electronic copy of the GNU Emacs Manual, written by Richard Stallman, comes bundled with GNU Emacs and can be viewed with the built-in Info browser. Two other manuals, the Emacs Lisp Reference Manual by Bil Lewis, Richard Stallman, and Dan Laliberte, and Programming in Emacs Lisp by Robert Chassell, are also included. Apart from the electronic versions, all three manuals are also available in book form, published by the Free Software Foundation. XEmacs has a similar manual to the GNU Emacs Manual, which forked from the GNU Emacs Manual at the same time as the XEmacs software.

[edit] Internationalization

Emacs supports the editing of text written in many human languages. It has support for many alphabets, scripts, writing systems, and cultural conventions. Emacs provides spell-checking for many languages by calling external programs such as ispell. Many encoding systems, including UTF-8, are supported. Emacs 22 has full Unicode support; however, it uses Emacs-specific encoding internally[19], necessitating conversion upon load and save. UTF-8 will become the Emacs-internal encoding in Emacs 23.

However, the Emacs user interface originated in English, and has not been translated into any other language, with the exception of the beginners' tutorial.

Visually-impaired and blind users can use a subsystem called Emacspeak which allows the editor to be used through audio feedback only.

[edit] Using Emacs

[edit] Commands

In the normal editing mode, Emacs behaves like other text editors: the character keys (a, b, c, 1, 2, 3, etc.) insert the corresponding characters, the arrow keys move the editing point, backspace deletes text, and so forth. Users invoke other commands with modified keystrokes: pressing the control key and/or the meta key/alt key/Escape key in conjunction with a regular key. Every editing command is actually an invocation of a function in the Emacs Lisp environment. Even a command as simple as typing a to insert the character a involves calling a function — in this case, self-insert-command.

Alternatively, users preferring IBM Common User Access style keys can use "cua-mode". This has been a third-party package up to, and including, GNU Emacs 21, but is included in GNU Emacs 22.

Note that the commands save-buffer and save-buffers-kill-emacs use multiple modified keystrokes. For example, C-x C-c means: while holding down the control key, press x; then, while holding down the control key, press c. This technique, which allows binding more commands to the keyboard than with the use of single keystrokes alone, was popularized by Emacs, which got it from TECMAC, one of the TECO macro collections that immediately preceded Emacs. It has since made its way into modern code editors like Visual Studio, and is even used to some extent by some consumer word processors such as Microsoft Word.

Some Emacs commands work by invoking an external program (such as ispell for spell-checking or gcc for program compilation), parsing the program's output, and displaying the result in Emacs.

[edit] Minibuffer

Emacs uses the minibuffer (normally the bottommost line) to request information. Text to target in a search, the name of a file to read or save and similar information is entered in the minibuffer. When applicable, command line completion is usually available using the tab and space keys.

[edit] File management and display

Emacs keeps text in objects called buffers. The user can create new buffers and dismiss unwanted ones, and several buffers can exist at the same time. Most buffers contain text loaded from text files, which the user can edit and save back to disk. Buffers also serve to store temporary text, such as the documentation strings displayed by the help library.

In both text-terminal and graphical modes, Emacs can split the editing area into separate sections (referred to since 1975 as "windows", which can be confusing on systems that have another concept of "windows" as well), so that more than one buffer can be displayed at a time. This has many uses. For example, one section can be used to display the source code of a program, while another displays the results from compiling the program. In graphical environments, Emacs can also launch multiple graphical-environment windows, known as "frames" in the context of Emacs.

[edit] Emacs Pinky

Because of Emacs' dependence on the modifier keys, and in particular because of how many keyboard-users press control keys with the little finger ("pinky"), heavy Emacs users have experienced pain in their pinky fingers (see repetitive strain injury).[20] This has been dubbed the "Emacs Pinky", and vi advocates often cite it as a reason to switch to vi (ironically vi users often transpose Caps Lock with their mode change key for similar reasons).[21] To alleviate this situation, many Emacs users transpose the left control key and the left caps-lock key or define both as control keys, which puts the control key back where it was on the pre-IBM-style PC keyboards for which Emacs key combinations were chosen (usually the leftmost key on the middle row of characters).[citation needed] Others use viper-mode, a feature built into Emacs that allows the use of the vi keys for basic text editing and the Emacs keys for more advanced features. Others use special keyboards such as Kinesis's Contoured Keyboard, which reduces the strain by moving the modifier keys so that they are in a position to be easily pushed by the thumb, or Microsoft Natural keyboard, which has large modifier keys placed symmetrically on both sides of the keyboard so that they can be pressed with the palm.

[edit] See also

[edit] References

  1. ^ Bernard S. Greenberg. "Multics Emacs: The History, Design and Implementation". http://www.multicians.org/mepap.html#secii. ; "GNU Emacs FAQ". http://www.gnu.org/software/emacs/emacs-faq.html#Origin-of-the-term-Emacs. ; Jamie Zawinski. "Emacs Timeline". http://www.jwz.org/doc/emacs-timeline.html. 
  2. ^ "A history of Emacs". XEmacs Internals Manual. 2006-12-11. http://www.xemacs.org/Documentation/21.5/html/internals_3.html. Retrieved on 2007-08-22. 
  3. ^ VAXen
  4. ^ Richard M., Stallman. "The EMACS Full-Screen Editor". http://www.lysator.liu.se/history/garb/txt/87-1-emacs.txt. Retrieved on 2007-09-14. 
  5. ^ Leigh Klotz. "email quoted in "Be Careful What You Joke About"". http://pogue.blogs.nytimes.com/2007/08/29/be-careful-what-you-joke-about/. 
  6. ^ "Re: Looking for a new Emacs maintainer or team". gnu.org Mailing List. http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02140.html. Retrieved on 2008-02-23. ; see also "Stallman on handing over GNU Emacs, its future and the importance of nomenclature"
  7. ^ Stephen J., Turnbull. "XEmacs vs. GNU Emacs". http://www.xemacs.org/About/XEmacsVsGNUemacs.html. Retrieved on 2006-09-27. 
  8. ^ ,FrontPage - Meadow Wiki
  9. ^ SXEmacs Website
  10. ^ Stifflog - Stiff asks, great programmers answer
  11. ^ NotGNU Emacs Editor (Author's Official Download Site)
  12. ^ QEmacs Homepage
  13. ^ Re: VM and the FSF
  14. ^ "Carbon Emacs Package". http://homepage.mac.com/zenitani/emacs-e.html. Retrieved on 2006-09-27. 
  15. ^ "Aquamacs is an easy-to-use, Mac-style Emacs for Mac OS X". http://aquamacs.org/. Retrieved on 2006-09-27. 
  16. ^ B, Ramprasad (2005-06-24). "GNU Emacs FAQ For Windows 95/98/ME/NT/XP and 2000". http://www.gnu.org/software/emacs/windows/ntemacs.html. Retrieved on 2006-09-27. 
  17. ^ Borgman, Lennart (2006). "EmacsW32 Home Page". http://ourcomments.org/Emacs/EmacsW32.html. Retrieved on 2006-09-27. 
  18. ^ "GNU Emacs on Windows". Franz Inc.. 2006. http://www.franz.com/emacs/. Retrieved on 2006-09-27. 
  19. ^ The internal encoding used by Emacs 22 is described in the file charset.h of the source code. The internal encoding used by XEmacs is similar but differs in details.
  20. ^ How To Avoid The Emacs Pinky Problem
  21. ^ VimとEmacsのあいだで小指痛を叫んだけもの. ZDNet

[edit] Bibliography

[edit] External links

Personal tools