comparison etc/NEWS @ 27094:6500fd0a7d8e

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 03 Jan 2000 00:29:21 +0000
parents 60f5b0f50db9
children 82ad511a02f6
comparison
equal deleted inserted replaced
27093:4b1a67a46d8c 27094:6500fd0a7d8e
10 10
11 ** `movemail' defaults to supporting POP. You can turn this off using 11 ** `movemail' defaults to supporting POP. You can turn this off using
12 the --without-pop configure option, should that be necessary. 12 the --without-pop configure option, should that be necessary.
13 13
14 * Changes in Emacs 21.1 14 * Changes in Emacs 21.1
15
16 ** You can now easily create new *Info* buffers using either M-x clone-buffer
17 or C-u m <entry> RET. M-x clone-buffer can also be used on *Help* and
18 several other special buffers.
15 19
16 ** Emacs can now support 'wheeled' mice (such as the MS IntelliMouse) 20 ** Emacs can now support 'wheeled' mice (such as the MS IntelliMouse)
17 under XFree86. To enable this, simply put (mwheel-install) in your 21 under XFree86. To enable this, simply put (mwheel-install) in your
18 .emacs file. 22 .emacs file.
19 23
748 expressions, semicolon following `if', `for' and `while' (except, of 752 expressions, semicolon following `if', `for' and `while' (except, of
749 course, after a `do .. while' statement), and C++ functions with 753 course, after a `do .. while' statement), and C++ functions with
750 reference parameters are recognized. The modes require font-lock mode 754 reference parameters are recognized. The modes require font-lock mode
751 to be enabled. 755 to be enabled.
752 756
757 *** smerge-mode.el provides `smerge-mode', a simple minor-mode for files
758 containing diff3-style conflict markers, such as generated by RCS.
759
753 *** 5x5.el is a simple puzzle game. 760 *** 5x5.el is a simple puzzle game.
754 761
755 *** hl-line.el provides a minor mode to highlight the current line. 762 *** hl-line.el provides a minor mode to highlight the current line.
756 763
757 *** ansi-color.el translates ANSI terminal escapes into text-properties. 764 *** ansi-color.el translates ANSI terminal escapes into text-properties.
858 Note that +++ before an item means the Lisp manual has been updated. 865 Note that +++ before an item means the Lisp manual has been updated.
859 --- means that I have decided it does not need to be in the Lisp manual. 866 --- means that I have decided it does not need to be in the Lisp manual.
860 When you add a new item, please add it without either +++ or --- 867 When you add a new item, please add it without either +++ or ---
861 so I will know I still need to look at it -- rms. 868 so I will know I still need to look at it -- rms.
862 869
870 ** easy-mmode-define-minor-mode now takes an additional BODY argument
871 and is renamed `define-minor-mode'.
872
863 ** If an abbrevs has only a hook, and that hooks has a non-nil 873 ** If an abbrevs has only a hook, and that hooks has a non-nil
864 `no-self-insert' property, the return value of the hook specifies 874 `no-self-insert' property, the return value of the hook specifies
865 whether an expansion has been done or not. If it returns nil, no 875 whether an expansion has been done or not. If it returns nil, no
866 expansion has been performed. The character leading to the call of 876 expansion has been performed. The character leading to the call of
867 the hook will then be self-inserted. 877 the hook will then be self-inserted.
878 888
879 Evaluate BODY with syntax table of current buffer set to a copy of 889 Evaluate BODY with syntax table of current buffer set to a copy of
880 TABLE. The current syntax table is saved, BODY is evaluated, and the 890 TABLE. The current syntax table is saved, BODY is evaluated, and the
881 saved table is restored, even in case of an abnormal exit. Value is 891 saved table is restored, even in case of an abnormal exit. Value is
882 what BODY returns. 892 what BODY returns.
893
894 ** Regular expressions now support Perl's non-greedy *? +? and ??
895 operators.
883 896
884 ** The optional argument BUFFER of function file-local-copy has been 897 ** The optional argument BUFFER of function file-local-copy has been
885 removed since it wasn't used by anything. 898 removed since it wasn't used by anything.
886 899
887 ** The file name argument of function `file-locked-p' is now required 900 ** The file name argument of function `file-locked-p' is now required