diff options
author | Glenn Morris <rgm@gnu.org> | 2014-06-01 18:02:21 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-06-01 18:02:21 -0700 |
commit | 4982861a08d0ec3262a0b68ff699920bb2938c40 (patch) | |
tree | cf01c1b9ce846288a2dcbc9e5c660071cecedc14 /doc/lispintro | |
parent | 953e106ac84587e765244995687b088969b5f6e1 (diff) | |
download | emacs-4982861a08d0ec3262a0b68ff699920bb2938c40.tar.gz emacs-4982861a08d0ec3262a0b68ff699920bb2938c40.tar.bz2 emacs-4982861a08d0ec3262a0b68ff699920bb2938c40.zip |
Make some old emulation modes obsolete
Ref: http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00502.html
* lisp/emulation/crisp.el, lisp/emulation/tpu-edt.el:
* lisp/emulation/tpu-extras.el, lisp/emulation/tpu-mapper.el:
* lisp/emulation/vi.el, lisp/emulation/vip.el, lisp/emulation/ws-mode.el:
Move to obsolete/.
* doc/emacs/ack.texi (Acknowledgments): Remove some obsolete items.
* doc/emacs/misc.texi (Emulation): Remove section.
* doc/lispintro/emacs-lisp-intro.texi (Autoload): Update loaddefs.el details.
* doc/misc/efaq.texi (Finding a package with particular functionality):
Update example.
* doc/misc/vip.texi: Mention this is obsolete.
* etc/NEWS: Mention this.
Diffstat (limited to 'doc/lispintro')
-rw-r--r-- | doc/lispintro/ChangeLog | 4 | ||||
-rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index a5878fc7568..304e036e3b1 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog @@ -1,3 +1,7 @@ +2014-06-02 Glenn Morris <rgm@gnu.org> + + * emacs-lisp-intro.texi (Autoload): Update loaddefs.el details. + 2014-04-17 Paul Eggert <eggert@cs.ucla.edu> * Makefile.in (infoclean): Be consistent about reporting failures. diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index f181569ca75..6d5296725b3 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -17548,8 +17548,8 @@ are not loaded right away; but you need to wait a moment when you first use such a function, while its containing file is evaluated. Rarely used functions are frequently autoloaded. The -@file{loaddefs.el} library contains hundreds of autoloaded functions, -from @code{bookmark-set} to @code{wordstar-mode}. Of course, you may +@file{loaddefs.el} library contains thousands of autoloaded functions, +from @code{5x5} to @code{zone}. Of course, you may come to use a `rare' function frequently. When you do, you should load that function's file with a @code{load} expression in your @file{.emacs} file. |