annotate etc/MORE.STUFF @ 107427:ecbe0edc4f69

Stop message.el from loading about 40 libraries it doesn't always need. The general approach is to autoload rather than require, and to require in the specific functions rather than the file. (Bug#5642) * url/url.el: Move mailcap require earlier in the file. * gnus/gmm-utils.el: Don't require wid-edit. (widget-create-child-value, widget-convert, widget-default-get): Autoload. * gnus/gnus-util.el: Don't require time-date, netrc. (message-fetch-field, gnus-group-name-decode): Declare rather than autoloading. (gnus-fetch-field): Require message. (gnus-decode-newsgroups): Require gnus-group. * gnus/ietf-drums.el: Don't require time-date. * gnus/message.el: Don't require hashcash, canlock, ecomplete. Do require mail-utils. Require nnheader only when compiling. (smtpmail-default-smtp-server): Remove declaration. (message-send-mail-function): Check smtpmail-default-smtp-server is bound rather than requiring smtpmail. (message-auto-save-directory, message-insert-signature): Use expand-file-name rather than nnheader-concat. (nnheader-insert-file-contents): Autoload. (hashcash-wait-async): Declare. (message-send-mail): Only call gnus-setup-posting-charset if gnus-group-posting-charset-alist is bound. Require hashcash if needed. (message-send-mail-with-sendmail): Require sendmail. (canlock-password, canlock-password-for-verify): Declare. (message-canlock-password): Require canlock. (nnheader-get-report): Autoload. (gnus-setup-posting-charset): Declare. (message-send-news): Require gnus-msg. (message-make-references, message-make-in-reply-to): Use mail-header-id rather than the alias mail-header-message-id. (ecomplete-add-item, ecomplete-save): Declare. (message-put-addresses-in-ecomplete): Require ecomplete. (ecomplete-display-matches): Autoload. * gnus/mm-decode.el: Don't require mailcap, gnus-util. (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command) (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info): Autoload. (mailcap-mime-extensions): Declare. * gnus/mm-encode.el: Don't require mailcap. (mailcap-extension-to-mime): Autoload. * gnus/mml-sec.el: Don't require password-cache. * gnus/mml.el (gnus-setup-posting-charset): Declare rather than autoload. (mailcap-parse-mimetypes, mailcap-mime-types): Declare. (mml-minibuffer-read-type): Require mailcap. (mml-preview): Require gnus-msg. * gnus/mml1991.el: Require password-cache. (password-cache-expiry): Remove declaration. * gnus/mml2015.el: Require password-cache. (password-cache-expiry): Remove declaration. * gnus/nneething.el (mailcap): Require mailcap. * gnus/nnheader.el: (declare-function): Add compatibility stub. (message-remove-header): Declare rather than autoload. (nnheader-replace-header): Require message. * gnus/nnimap.el (declare-function): Add compatibility stub. (netrc-parse, netrc-machine-user-or-password): Declare. (nnimap-open-connection): Require netrc. * gnus/nntp.el (declare-function): Add compatibility stub. (netrc-parse, netrc-machine, netrc-get): Declare. (nntp-send-authinfo): Require netrc. * gnus/rfc2047.el: Don't require qp. (quoted-printable-encode-region, quoted-printable-decode-string): Autoload. * gnus/sieve-mode.el: Don't require easymenu. (easy-menu-add-item): Autoload it. * gnus/spam-stat.el (time-to-number-of-days): Autoload it. * password-cache.el (password-cache, password-cache-expiry): Autoload.
author Glenn Morris <rgm@gnu.org>
date Thu, 18 Mar 2010 19:55:37 -0700
parents 1d1d5d9bd884
children 82e44180c8a6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29401
8cecaaeeeaa4 *** empty log message ***
Dave Love <fx@gnu.org>
parents: 29193
diff changeset
1 More Neat Stuff for your Emacs
75774
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
2
106261
036ae08de616 VM has moved again.
Glenn Morris <rgm@gnu.org>
parents: 104218
diff changeset
3 Copyright (C) 1993, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
106815
1d1d5d9bd884 Add 2010 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 106272
diff changeset
4 2009, 2010 Free Software Foundation, Inc.
75774
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
5 See the end of the file for license conditions.
24127
250719d2b13b Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
6
25844
Dave Love <fx@gnu.org>
parents: 25489
diff changeset
7 This file describes GNU Emacs programs and resources that are
Dave Love <fx@gnu.org>
parents: 25489
diff changeset
8 maintained by other people. Some of these may become part of the
Dave Love <fx@gnu.org>
parents: 25489
diff changeset
9 Emacs distribution in the future. Others we unfortunately can't
Dave Love <fx@gnu.org>
parents: 25489
diff changeset
10 distribute, even though they are free software, because we lack legal
Dave Love <fx@gnu.org>
parents: 25489
diff changeset
11 papers for copyright purposes. Also included are sites where
Dave Love <fx@gnu.org>
parents: 25489
diff changeset
12 development versions of some packages distributed with Emacs may be
Dave Love <fx@gnu.org>
parents: 25489
diff changeset
13 found.
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
14
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
15 You might also look at the Emacs web page
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
16 <URL:http://www.gnu.org/software/emacs/emacs.html>. If you use the
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
17 Windows-32 version of Emacs, see the NTEmacs sites listed in the FAQ.
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
18
38862
612446a95acd Fixed typo
Jason Rumney <jasonr@gnu.org>
parents: 37369
diff changeset
19 Please submit a bug report if you find that any of the addresses
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
20 listed here fail.
24127
250719d2b13b Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
21
27615
Dave Love <fx@gnu.org>
parents: 26223
diff changeset
22 * The `Emacs Lisp List' at
64852
ff03de091b63 Update URLs.
Stephen Eglen <stephen@gnu.org>
parents: 64262
diff changeset
23 <URL:http://www.damtp.cam.ac.uk/user/eglen/emacs/ell.html> has pointers
27615
Dave Love <fx@gnu.org>
parents: 26223
diff changeset
24 to sources of a large number of packages.
Dave Love <fx@gnu.org>
parents: 26223
diff changeset
25
24157
19192d7c0e53 Correction re. LCD. Note on gnu.emacs.sources.
Dave Love <fx@gnu.org>
parents: 24128
diff changeset
26 * gnu.emacs.sources
19192d7c0e53 Correction re. LCD. Note on gnu.emacs.sources.
Dave Love <fx@gnu.org>
parents: 24128
diff changeset
27
19192d7c0e53 Correction re. LCD. Note on gnu.emacs.sources.
Dave Love <fx@gnu.org>
parents: 24128
diff changeset
28 Packages posted to the gnu.emacs.sources newsgroup (see
19192d7c0e53 Correction re. LCD. Note on gnu.emacs.sources.
Dave Love <fx@gnu.org>
parents: 24128
diff changeset
29 etc/MAILINGLISTS) might be archived specifically (try a web search
19192d7c0e53 Correction re. LCD. Note on gnu.emacs.sources.
Dave Love <fx@gnu.org>
parents: 24128
diff changeset
30 engine) or retrievable from general Usenet archive services.
19192d7c0e53 Correction re. LCD. Note on gnu.emacs.sources.
Dave Love <fx@gnu.org>
parents: 24128
diff changeset
31
52270
52f55caa8273 Change several URLs; add new entries (ESS; preview latex; emacswiki).
Stephen Eglen <stephen@gnu.org>
parents: 48785
diff changeset
32 * emacswiki.org
52f55caa8273 Change several URLs; add new entries (ESS; preview latex; emacswiki).
Stephen Eglen <stephen@gnu.org>
parents: 48785
diff changeset
33
52f55caa8273 Change several URLs; add new entries (ESS; preview latex; emacswiki).
Stephen Eglen <stephen@gnu.org>
parents: 48785
diff changeset
34 The Emacs Wiki has an area for storing elisp files
106272
3adb5f0ea6f6 * MORE.STUFF: emacswiki ElispArea url "wiki.pl" -> "wiki".
Kevin Ryde <user42@zip.com.au>
parents: 106261
diff changeset
35 <URL:http://www.emacswiki.org/cgi-bin/wiki/ElispArea>.
52270
52f55caa8273 Change several URLs; add new entries (ESS; preview latex; emacswiki).
Stephen Eglen <stephen@gnu.org>
parents: 48785
diff changeset
36
76099
a5085ef9cf22 Add pointer to Phil Sung's slides.
Eli Zaretskii <eliz@gnu.org>
parents: 75774
diff changeset
37 * Emacs tutorials and manuals
a5085ef9cf22 Add pointer to Phil Sung's slides.
Eli Zaretskii <eliz@gnu.org>
parents: 75774
diff changeset
38
a5085ef9cf22 Add pointer to Phil Sung's slides.
Eli Zaretskii <eliz@gnu.org>
parents: 75774
diff changeset
39 * Emacs slides and tutorials can be found here:
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
40 <URL:http://web.psung.name/emacs/>
76099
a5085ef9cf22 Add pointer to Phil Sung's slides.
Eli Zaretskii <eliz@gnu.org>
parents: 75774
diff changeset
41
24774
99f69a5b41f4 Remove Crisp (stale). Add SQL and files for Info-look.
Dave Love <fx@gnu.org>
parents: 24654
diff changeset
42 * Maintenance versions of some packages distributed with Emacs
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
43
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
44 You might find bug-fixes or enhancements in these places.
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
45
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
46 * Ada-mode: <URL:http://stephe-leake.org/emacs/ada-mode/emacs-ada-mode.html>
25489
cd3aa5527b4f Update Ada, ILISP, GNUPG, MULE_UCS.
Dave Love <fx@gnu.org>
parents: 25053
diff changeset
47
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
48 * Battery and Info Look: <URL:http://ralph-schleicher.de/emacs.html>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
49
52270
52f55caa8273 Change several URLs; add new entries (ESS; preview latex; emacswiki).
Stephen Eglen <stephen@gnu.org>
parents: 48785
diff changeset
50 * BS: <URL:http://www.geekware.de/software/emacs/index.html>
27615
Dave Love <fx@gnu.org>
parents: 26223
diff changeset
51
65398
61acf14bf03f Update url for calculator.el.
Eli Zaretskii <eliz@gnu.org>
parents: 65050
diff changeset
52 * Calculator: <URL:http://www.barzilay.org/misc/calculator.el>
30802
fcfb193a2a39 *** empty log message ***
Dave Love <fx@gnu.org>
parents: 30227
diff changeset
53
29401
8cecaaeeeaa4 *** empty log message ***
Dave Love <fx@gnu.org>
parents: 29193
diff changeset
54 * CC mode: <URL:http://cc-mode.sourceforge.net/>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
55
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
56 * CPerl: <URL:http://math.berkeley.edu/~ilya/software/emacs/>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
57
52270
52f55caa8273 Change several URLs; add new entries (ESS; preview latex; emacswiki).
Stephen Eglen <stephen@gnu.org>
parents: 48785
diff changeset
58 * Ediff and Viper: <URL:http://www.cs.sunysb.edu/~kifer/emacs.html>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
59
32917
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
60 * Eldoc and Rlogin:
65050
846687fa3571 Update links and URLs.
Eli Zaretskii <eliz@gnu.org>
parents: 64980
diff changeset
61 <URL:http://www.splode.com/~friedman/software/emacs-lisp/>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
62
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
63 * ERC: <URL:http://savannah.gnu.org/projects/erc/>
70617
af5bc6c80df2 ERC is now part of Emacs.
Romain Francoise <romain@orebokech.com>
parents: 70075
diff changeset
64
104218
f22133eb14e0 * MORE.STUFF: Update Etags and Ispell URLs.
Chong Yidong <cyd@stupidchicken.com>
parents: 102896
diff changeset
65 * Etags: <URL:http://fly.isti.cnr.it/software/>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
66
32917
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
67 * Gnus: <URL:http://www.gnus.org/>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
68
104218
f22133eb14e0 * MORE.STUFF: Update Etags and Ispell URLs.
Chong Yidong <cyd@stupidchicken.com>
parents: 102896
diff changeset
69 * Ispell: <URL:http://www.kdstevens.com/stevens/ispell-page.html>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
70
70075
900c28bb2ad4 Add MH-E.
Bill Wohler <wohler@newt.com>
parents: 69720
diff changeset
71 * MH-E: <URL:http://mh-e.sourceforge.net/>
900c28bb2ad4 Add MH-E.
Bill Wohler <wohler@newt.com>
parents: 69720
diff changeset
72
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
73 * nXML: <URL:http://www.thaiopensource.com/nxml-mode/>
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
74
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
75 * Org mode: <URL:http://orgmode.org/>
77857
da20d5887272 Remove dead URL for Fortune, and update URLs for Hideshow, Org, EDB,
Chong Yidong <cyd@stupidchicken.com>
parents: 77535
diff changeset
76
32917
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
77 * PS mode: <URL:http://odur.let.rug.nl/%7Ekleiweg/postscript/>
26223
cead5ead9ae6 *** empty log message ***
Dave Love <fx@gnu.org>
parents: 25844
diff changeset
78
77159
0f28a629f991 Update some links, remove some dead ones.
Glenn Morris <rgm@gnu.org>
parents: 76099
diff changeset
79 * PS-print: <URL:http://www.emacswiki.org/cgi-bin/wiki/PsPrintPackage>
28852
3c430bf1873f *** empty log message ***
Dave Love <fx@gnu.org>
parents: 27666
diff changeset
80
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
81 * Python: <URL:http://www.loveshack.ukfsn.org/emacs/>
77535
538eb2feec6e Add link to python mode.
Chong Yidong <cyd@stupidchicken.com>
parents: 77190
diff changeset
82
65050
846687fa3571 Update links and URLs.
Eli Zaretskii <eliz@gnu.org>
parents: 64980
diff changeset
83 * QuickURL: <URL:http://www.davep.org/emacs/>
27615
Dave Love <fx@gnu.org>
parents: 26223
diff changeset
84
77159
0f28a629f991 Update some links, remove some dead ones.
Glenn Morris <rgm@gnu.org>
parents: 76099
diff changeset
85 * RefTeX: <URL:http://www.gnu.org/software/auctex/reftex.html>
24801
785877e7bab4 RefTeX URL.
Dave Love <fx@gnu.org>
parents: 24774
diff changeset
86
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
87 * Remember: <URL:https://gna.org/p/remember-el>
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
88
52270
52f55caa8273 Change several URLs; add new entries (ESS; preview latex; emacswiki).
Stephen Eglen <stephen@gnu.org>
parents: 48785
diff changeset
89 * Speedbar, Checkdoc etc: <URL:http://cedet.sourceforge.net/>
24127
250719d2b13b Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
90
77159
0f28a629f991 Update some links, remove some dead ones.
Glenn Morris <rgm@gnu.org>
parents: 76099
diff changeset
91 * SQL: <URL:http://www.emacswiki.org/cgi-bin/wiki/sql.el>
24774
99f69a5b41f4 Remove Crisp (stale). Add SQL and files for Info-look.
Dave Love <fx@gnu.org>
parents: 24654
diff changeset
92
56418
8556ca5b915d Tramp is now distributed with Emacs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56218
diff changeset
93 * Tramp: Remote file access via rsh/ssh
8556ca5b915d Tramp is now distributed with Emacs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56218
diff changeset
94 <URL:http://savannah.gnu.org/projects/tramp/>
8556ca5b915d Tramp is now distributed with Emacs.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56218
diff changeset
95
48785
08b94ecd1d08 Fix URLs.
Pavel Janík <Pavel@Janik.cz>
parents: 47246
diff changeset
96 * Webjump: <URL:http://www.neilvandyke.org/webjump>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
97
46988
e6a15b4101f4 Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 43400
diff changeset
98 * Auxiliary files
24774
99f69a5b41f4 Remove Crisp (stale). Add SQL and files for Info-look.
Dave Love <fx@gnu.org>
parents: 24654
diff changeset
99
99f69a5b41f4 Remove Crisp (stale). Add SQL and files for Info-look.
Dave Love <fx@gnu.org>
parents: 24654
diff changeset
100 * (Tex)info files for use with Info-look that don't come from GNU
99f69a5b41f4 Remove Crisp (stale). Add SQL and files for Info-look.
Dave Love <fx@gnu.org>
parents: 24654
diff changeset
101 packages:
106272
3adb5f0ea6f6 * MORE.STUFF: emacswiki ElispArea url "wiki.pl" -> "wiki".
Kevin Ryde <user42@zip.com.au>
parents: 106261
diff changeset
102 * Scheme: <URL:http://groups.csail.mit.edu/mac/ftpdir/scm/r5rs.info.tar.gz>
24774
99f69a5b41f4 Remove Crisp (stale). Add SQL and files for Info-look.
Dave Love <fx@gnu.org>
parents: 24654
diff changeset
103 * LaTeX: <URL:ftp://ctan.tug.org/tex-archive/info/latex2e-help-texinfo/
99f69a5b41f4 Remove Crisp (stale). Add SQL and files for Info-look.
Dave Love <fx@gnu.org>
parents: 24654
diff changeset
104 latex2e.texi> (or CTAN mirrors)
69720
143b42ef3d20 updated link(s)
Ramprasad B <ramprasad_i82@yahoo.com>
parents: 67166
diff changeset
105 * Perl: <URL:ftp://ftp.cpan.org/pub/CPAN/doc/manual/texinfo/>
43400
e39dc97072e2 Minor fixup. Remove PCL-CVS (the Emacs CVS code is the latest/greatest).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42610
diff changeset
106 (or CPAN mirrors)
24774
99f69a5b41f4 Remove Crisp (stale). Add SQL and files for Info-look.
Dave Love <fx@gnu.org>
parents: 24654
diff changeset
107
102259
50330dd7aee8 Mention Zile.
Glenn Morris <rgm@gnu.org>
parents: 101186
diff changeset
108 * GNU Zile: <URL:http://www.gnu.org/software/zile/>
50330dd7aee8 Mention Zile.
Glenn Morris <rgm@gnu.org>
parents: 101186
diff changeset
109 A lightweight Emacs clone, for when you don't have room for Emacs proper.
50330dd7aee8 Mention Zile.
Glenn Morris <rgm@gnu.org>
parents: 101186
diff changeset
110
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
111 * Packages and add-ons not bundled with Emacs
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
112
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
113 Various major packages or useful additions aren't distributed as part of
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
114 Emacs for various reasons, sometimes because their authors haven't made
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
115 a copyright assignment to the FSF. Some of them may be integrated in
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
116 the future.
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
117
32917
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
118 You might like to check whether they are packaged for your system.
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
119 Several are for Debian GNU/Linux in particular.
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
120
70839
f20f9bda1ae7 Update AUCTeX entry.
Reiner Steib <Reiner.Steib@gmx.de>
parents: 70667
diff changeset
121 * AUCTeX: <URL:http://www.gnu.org/software/auctex/>
f20f9bda1ae7 Update AUCTeX entry.
Reiner Steib <Reiner.Steib@gmx.de>
parents: 70667
diff changeset
122 An extensible package that supports writing and formatting TeX
f20f9bda1ae7 Update AUCTeX entry.
Reiner Steib <Reiner.Steib@gmx.de>
parents: 70667
diff changeset
123 files (including AMS-TeX, LaTeX, Texinfo, ConTeXt, and docTeX).
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
124
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
125 * BBDB: personal Info Rolodex integrated with mail/news:
29401
8cecaaeeeaa4 *** empty log message ***
Dave Love <fx@gnu.org>
parents: 29193
diff changeset
126 <URL:http://bbdb.sourceforge.net/>
32917
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
127 [You might want to set the coding system of your .bbdb file to
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
128 emacs-mule, say by adding `("\\.bbdb\\'" . emacs-mule)' to
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
129 `file-coding-system-alist' for non-ASCII characters.]
24127
250719d2b13b Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
130
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
131 * Boxquote: <URL:http://www.davep.org/emacs/>
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
132
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
133 * CEDET: Collection of Emacs Development Environment Tools, including
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
134 EIEIO, Semantic, Speedbar, EDE, and COGRE:
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
135 <URL:http://cedet.sourceforge.net/>
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
136
24654
cfb89a15c1c3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 24235
diff changeset
137 * CJK-emacs: Converting MULE-encoded text to TeX:
cfb89a15c1c3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 24235
diff changeset
138 <URL:ftp://ctan.tug.org/tex-archive/language/chinese/CJK/> and
cfb89a15c1c3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 24235
diff changeset
139 mirrors of the `CTAN' TeX archives.
cfb89a15c1c3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 24235
diff changeset
140
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
141 * Dismal: spreadsheet:
77159
0f28a629f991 Update some links, remove some dead ones.
Glenn Morris <rgm@gnu.org>
parents: 76099
diff changeset
142 <URL:http://ritter.ist.psu.edu/dismal/dismal.html>
47246
89e300941ccd Changed URL for etags.
Francesco Potortì <pot@gnu.org>
parents: 46988
diff changeset
143
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
144 * ECB: Emacs Code Browser: <URL:http://ecb.sourceforge.net/>
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
145
77857
da20d5887272 Remove dead URL for Fortune, and update URLs for Hideshow, Org, EDB,
Chong Yidong <cyd@stupidchicken.com>
parents: 77535
diff changeset
146 * EDB: database: <URL:http://www.gnuvola.org/software/edb/>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
147
52305
2db406f2ac22 Added Ee (categorizing information manager)
Stephen Eglen <stephen@gnu.org>
parents: 52270
diff changeset
148 * Ee: categorizing information manager:
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
149 <URL:http://www.jurta.org/en/emacs/ee/>
52305
2db406f2ac22 Added Ee (categorizing information manager)
Stephen Eglen <stephen@gnu.org>
parents: 52270
diff changeset
150
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
151 * EFS: enhanced version of ange-ftp:
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
152 <URL:http://www-pu.informatik.uni-tuebingen.de/users/sperber/software/efs/>
24127
250719d2b13b Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
153
29193
eb1c9224a1c6 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents: 28852
diff changeset
154 * Elib library: <URL:http://www.gnu.org/software/elib/elib.html>
32917
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
155 From GNU distribution mirrors. (Much of this functionality is now
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
156 in Emacs.)
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
157
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
158 * EMacro: <URL:http://emacro.sourceforge.net/>
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
159 EMacro is a portable configuration file that configures itself.
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
160
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
161 * Emacs Muse: <URL:http://mwolson.org/projects/EmacsMuse.html>
70617
af5bc6c80df2 ERC is now part of Emacs.
Romain Francoise <romain@orebokech.com>
parents: 70075
diff changeset
162 An authoring and publishing environment for Emacs.
af5bc6c80df2 ERC is now part of Emacs.
Romain Francoise <romain@orebokech.com>
parents: 70075
diff changeset
163
64852
ff03de091b63 Update URLs.
Stephen Eglen <stephen@gnu.org>
parents: 64262
diff changeset
164 * Emacs speaks statistics (ESS): statistical programming within Emacs
53474
dc7da3850335 Update URL for ESS.
Stephen Eglen <stephen@gnu.org>
parents: 52774
diff changeset
165 <URL:http://ess.r-project.org>
52270
52f55caa8273 Change several URLs; add new entries (ESS; preview latex; emacswiki).
Stephen Eglen <stephen@gnu.org>
parents: 48785
diff changeset
166
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
167 * Emacspeak -- A Speech Output Subsystem For Emacs:
28852
3c430bf1873f *** empty log message ***
Dave Love <fx@gnu.org>
parents: 27666
diff changeset
168 <URL:http://emacspeak.sourceforge.net/>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
169
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
170 * Emacs-w3m : <URL:http://emacs-w3m.namazu.org/>
77190
c633d235e436 Remove obsolete comment about Emacs 21.
Glenn Morris <rgm@gnu.org>
parents: 77159
diff changeset
171 A simple Emacs interface to w3m, which is a text-mode WWW browser
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
172
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
173 * Emacs Wiki Mode: <URL:http://mwolson.org/projects/EmacsWikiMode.html>
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
174 A wiki-like publishing tool and personal information manager
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
175
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
176 * Gnuserv:
69720
143b42ef3d20 updated link(s)
Ramprasad B <ramprasad_i82@yahoo.com>
parents: 67166
diff changeset
177 <URL:http://www.hpl.hp.com/personal/ange/gnuserv/home.html>
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
178 Alternative emacsclient/emacsserver. Also available from this Web
65050
846687fa3571 Update links and URLs.
Eli Zaretskii <eliz@gnu.org>
parents: 64980
diff changeset
179 page: eiffel-mode.el.
40564
78a7d52a12f1 Update the URL of Gnuserv. From Martin Schwenke <martin@meltin.net>.
Eli Zaretskii <eliz@gnu.org>
parents: 38862
diff changeset
180
67166
894f56cfb001 Add entry: "Go in a buffer: Go Text Protocol client".
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 65398
diff changeset
181 * Go in a buffer: Go Text Protocol client:
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
182 <URL:http://www.gnuvola.org/software/personal-elisp/dist/lisp/diversions/gnugo.el>
67166
894f56cfb001 Add entry: "Go in a buffer: Go Text Protocol client".
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 65398
diff changeset
183 A modified version is also bundled with GNU Go:
894f56cfb001 Add entry: "Go in a buffer: Go Text Protocol client".
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 65398
diff changeset
184 <URL:http://www.gnu.org/software/gnugo/gnugo.html>
894f56cfb001 Add entry: "Go in a buffer: Go Text Protocol client".
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 65398
diff changeset
185
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
186 * hm--html-menus:
69720
143b42ef3d20 updated link(s)
Ramprasad B <ramprasad_i82@yahoo.com>
parents: 67166
diff changeset
187 <URL:ftp://sunsite.unc.edu/pub/Linux/apps/editors/emacs/>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
188 HTML-specific editing. Can work with PSGML.
24127
250719d2b13b Initial revision
Dave Love <fx@gnu.org>
parents:
diff changeset
189
65050
846687fa3571 Update links and URLs.
Eli Zaretskii <eliz@gnu.org>
parents: 64980
diff changeset
190 * Hyperbole:
77159
0f28a629f991 Update some links, remove some dead ones.
Glenn Morris <rgm@gnu.org>
parents: 76099
diff changeset
191 <URL:http://directory.fsf.org/hyperbole.html>
65050
846687fa3571 Update links and URLs.
Eli Zaretskii <eliz@gnu.org>
parents: 64980
diff changeset
192 Hyperbole is an open, efficient, programmable information
846687fa3571 Update links and URLs.
Eli Zaretskii <eliz@gnu.org>
parents: 64980
diff changeset
193 management and hypertext system.
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
194
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
195 * JDEE: <URL:http://jdee.sourceforge.net/>
52270
52f55caa8273 Change several URLs; add new entries (ESS; preview latex; emacswiki).
Stephen Eglen <stephen@gnu.org>
parents: 48785
diff changeset
196 Provides a Java development environment for Emacs.
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
197
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
198 * Mailcrypt:
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
199 <URL:http://mailcrypt.sourceforge.net/>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
200 PGP and GPG support. PGP isn't free software, but GPG, the GNU
32917
0d78af57cddd Various updates.
Dave Love <fx@gnu.org>
parents: 30802
diff changeset
201 Privacy Guard, is a free replacement <URL:http://www.gnupg.org/>.
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
202
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
203 * Mew: <URL:http://www.mew.org/>
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
204 A MIME mail reader for Emacs/XEmacs.
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
205
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
206 * MMM Mode: <URL:http://mmm-mode.sourceforge.net/>
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
207 MMM Mode is an emacs add-on package providing a minor mode that
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
208 allows Multiple Major Modes to coexist in one buffer.
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
209
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
210 * Planner Mode: <URL:http://www.wjsullivan.net/PlannerMode.html>
70667
530650861e31 Revision: emacs@sv.gnu.org/emacs--devo--0--patch-280
Miles Bader <miles@gnu.org>
parents: 70617
diff changeset
211 Planner is an organizer and day planner for Emacs.
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
212
52270
52f55caa8273 Change several URLs; add new entries (ESS; preview latex; emacswiki).
Stephen Eglen <stephen@gnu.org>
parents: 48785
diff changeset
213 * Preview LaTeX: embed preview LaTeX images in source buffer.
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
214 <URL:http://www.gnu.org/software/auctex/preview-latex.html>
52270
52f55caa8273 Change several URLs; add new entries (ESS; preview latex; emacswiki).
Stephen Eglen <stephen@gnu.org>
parents: 48785
diff changeset
215
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
216 * PSGML: <URL:http://www.lysator.liu.se/projects/about_psgml.html>
24654
cfb89a15c1c3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 24235
diff changeset
217 DTD-aware serious SGML/XML editing.
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
218
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
219 * Quack: <URL:http://www.neilvandyke.org/quack/>
77857
da20d5887272 Remove dead URL for Fortune, and update URLs for Hideshow, Org, EDB,
Chong Yidong <cyd@stupidchicken.com>
parents: 77535
diff changeset
220 Quack enhances Emacs support for Scheme.
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
221
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
222 * Session: <URL:http://emacs-session.sourceforge.net/>
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
223 Session Management for Emacs.
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
224
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
225 * SLIME: The Superior Lisp Interaction Mode for Emacs:
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
226 <URL:http://common-lisp.net/project/slime/>
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
227
27666
fb8f59c1319c Add Tamago.
Dave Love <fx@gnu.org>
parents: 27615
diff changeset
228 * Tamago: Chinese/Japanese/Korean input method
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
229 <URL:http://www.m17n.org/tamago/index.en.html>
27666
fb8f59c1319c Add Tamago.
Dave Love <fx@gnu.org>
parents: 27615
diff changeset
230 Emacs Lisp package to provide input methods for CJK characters.
fb8f59c1319c Add Tamago.
Dave Love <fx@gnu.org>
parents: 27615
diff changeset
231 It can use these background conversion servers:
fb8f59c1319c Add Tamago.
Dave Love <fx@gnu.org>
parents: 27615
diff changeset
232 FreeWnn (jserver, cserver, tserver),
fb8f59c1319c Add Tamago.
Dave Love <fx@gnu.org>
parents: 27615
diff changeset
233 Wnn6,
fb8f59c1319c Add Tamago.
Dave Love <fx@gnu.org>
parents: 27615
diff changeset
234 SJ3 Ver.2
fb8f59c1319c Add Tamago.
Dave Love <fx@gnu.org>
parents: 27615
diff changeset
235
102896
5967d3d57ee8 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Glenn Morris <rgm@gnu.org>
parents: 102259
diff changeset
236 * Tiny Tools: <URL:http://freshmeat.net/projects/emacs-tiny-tools>
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
237
106261
036ae08de616 VM has moved again.
Glenn Morris <rgm@gnu.org>
parents: 104218
diff changeset
238 * VM (View Mail): Alternative mail reader
036ae08de616 VM has moved again.
Glenn Morris <rgm@gnu.org>
parents: 104218
diff changeset
239 <URL:http://launchpad.net/vm>
036ae08de616 VM has moved again.
Glenn Morris <rgm@gnu.org>
parents: 104218
diff changeset
240 Previously hosted at: <URL:http://www.nongnu.org/viewmail/>
036ae08de616 VM has moved again.
Glenn Morris <rgm@gnu.org>
parents: 104218
diff changeset
241 There are VM newsgroups: <URL:news:gnu.emacs.vm.info>, and
036ae08de616 VM has moved again.
Glenn Morris <rgm@gnu.org>
parents: 104218
diff changeset
242 <URL:news:gnu.emacs.vm.bug>.
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
243
69720
143b42ef3d20 updated link(s)
Ramprasad B <ramprasad_i82@yahoo.com>
parents: 67166
diff changeset
244 * W3: <URL:http://savannah.gnu.org/projects/w3/>
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
245 Web browser. There's a W3 mail list/newsgroup
69720
143b42ef3d20 updated link(s)
Ramprasad B <ramprasad_i82@yahoo.com>
parents: 67166
diff changeset
246 <URL:http://savannah.gnu.org/mail/?group=w3>.
24128
4fb9b83e0810 Revamped.
Dave Love <fx@gnu.org>
parents: 24127
diff changeset
247
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
248 * Wanderlust: <URL:http://www.gohome.org/wl/>
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
249 Yet Another Message Interface on Emacsen. Wanderlust is a mail/news
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
250 reader supporting IMAP4rev1 for emacsen.
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
251
69720
143b42ef3d20 updated link(s)
Ramprasad B <ramprasad_i82@yahoo.com>
parents: 67166
diff changeset
252 * WhizzyTex: <URL:http://cristal.inria.fr/whizzytex/>
59527
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
253 WhizzyTeX provides a minor mode for Emacs or XEmacs, a (bash)
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
254 shell-script daemon and some LaTeX macros.
2971d1d726ad Add entries of some well known and widely used packages.
Richard M. Stallman <rms@gnu.org>
parents: 57034
diff changeset
255
69720
143b42ef3d20 updated link(s)
Ramprasad B <ramprasad_i82@yahoo.com>
parents: 67166
diff changeset
256 * X-Symbol: <URL:http://x-symbol.sourceforge.net/>
77190
c633d235e436 Remove obsolete comment about Emacs 21.
Glenn Morris <rgm@gnu.org>
parents: 77159
diff changeset
257 Quasi-WYSIWYG editing of TeX & al.
29401
8cecaaeeeaa4 *** empty log message ***
Dave Love <fx@gnu.org>
parents: 29193
diff changeset
258
8cecaaeeeaa4 *** empty log message ***
Dave Love <fx@gnu.org>
parents: 29193
diff changeset
259 Local Variables:
8cecaaeeeaa4 *** empty log message ***
Dave Love <fx@gnu.org>
parents: 29193
diff changeset
260 mode: text
30227
d1b043964152 Add view-mode to local variables.
Dave Love <fx@gnu.org>
parents: 29401
diff changeset
261 mode: view
101186
45b48aab3b15 In Local Variables change `eval: (goto-address)' to `mode: goto-address'.
Juri Linkov <juri@jurta.org>
parents: 100972
diff changeset
262 mode: goto-address
29401
8cecaaeeeaa4 *** empty log message ***
Dave Love <fx@gnu.org>
parents: 29193
diff changeset
263 End:
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52305
diff changeset
264
75774
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
265 This file is part of GNU Emacs.
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
266
95004
cbf5528cf447 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91327
diff changeset
267 GNU Emacs is free software: you can redistribute it and/or modify
75774
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
268 it under the terms of the GNU General Public License as published by
95004
cbf5528cf447 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91327
diff changeset
269 the Free Software Foundation, either version 3 of the License, or
cbf5528cf447 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91327
diff changeset
270 (at your option) any later version.
75774
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
271
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
272 GNU Emacs is distributed in the hope that it will be useful,
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
273 but WITHOUT ANY WARRANTY; without even the implied warranty of
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
274 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
275 GNU General Public License for more details.
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
276
dc23aaa67696 Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents: 75343
diff changeset
277 You should have received a copy of the GNU General Public License
95004
cbf5528cf447 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91327
diff changeset
278 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
71188
d4fb4584a969 Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents: 70839
diff changeset
279
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52305
diff changeset
280 arch-tag: c1d4e7c8-db85-44e6-909e-659e2b20fefa