comparison etc/NEWS @ 40215:77247104a65e

mention html-xhtml
author Sam Steingold <sds@gnu.org>
date Tue, 23 Oct 2001 15:46:01 +0000
parents 9ba78bf11cf1
children b2456ad80460
comparison
equal deleted inserted replaced
40214:a87bf217f5a6 40215:77247104a65e
6 For older news, see the file ONEWS 6 For older news, see the file ONEWS
7 7
8 8
9 * Changes in Emacs 21.2 9 * Changes in Emacs 21.2
10 10
11 ** New user option `html-xhtml'.
12 When this option is enabled, HTML tags are inserted in XHTML style,
13 i.e., there is always a closing tag.
14
11 ** When the *scratch* buffer is recreated, its mode is set from 15 ** When the *scratch* buffer is recreated, its mode is set from
12 initial-major-mode, which normally is lisp-interaction-mode, 16 initial-major-mode, which normally is lisp-interaction-mode,
13 instead of using default-major-mode. 17 instead of using default-major-mode.
14 18
15 ** Byte compiler warning and error messages have been brought more 19 ** Byte compiler warning and error messages have been brought more
16 in line with the output of other GNU tools. 20 in line with the output of other GNU tools.
17 21
18 ** Lisp-mode now uses font-lock-docstring-face for the docstrings. 22 ** Lisp-mode now uses font-lock-docstring-face for the docstrings.
2378 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, 2382 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual,
2379 (Display-related features are described in a page of their own below.) 2383 (Display-related features are described in a page of their own below.)
2380 2384
2381 ** Function assq-delete-all replaces function assoc-delete-all. 2385 ** Function assq-delete-all replaces function assoc-delete-all.
2382 2386
2383 ** The new function amimate-string, from lisp/play/animate.el 2387 ** The new function amimate-string, from lisp/play/animate.el
2384 allows the animated display of strings. 2388 allows the animated display of strings.
2385 2389
2386 ** The new function `interactive-form' can be used to obtain the 2390 ** The new function `interactive-form' can be used to obtain the
2387 interactive form of a function. 2391 interactive form of a function.
2388 2392
2621 2625
2622 `(any SET)' 2626 `(any SET)'
2623 matches any character in SET. SET may be a character or string. 2627 matches any character in SET. SET may be a character or string.
2624 Ranges of characters can be specified as `A-Z' in strings. 2628 Ranges of characters can be specified as `A-Z' in strings.
2625 2629
2626 '(in SET)' 2630 '(in SET)'
2627 like `any'. 2631 like `any'.
2628 2632
2629 `(not (any SET))' 2633 `(not (any SET))'
2630 matches any character not in SET 2634 matches any character not in SET
2631 2635
2823 `(*? SEXP)' 2827 `(*? SEXP)'
2824 like `zero-or-more', but always produces a non-greedy regexp. 2828 like `zero-or-more', but always produces a non-greedy regexp.
2825 2829
2826 `(one-or-more SEXP)' 2830 `(one-or-more SEXP)'
2827 matches one or more occurrences of A. 2831 matches one or more occurrences of A.
2828 2832
2829 `(1+ SEXP)' 2833 `(1+ SEXP)'
2830 like `one-or-more'. 2834 like `one-or-more'.
2831 2835
2832 `(+ SEXP)' 2836 `(+ SEXP)'
2833 like `one-or-more', but always produces a greedy regexp. 2837 like `one-or-more', but always produces a greedy regexp.
2835 `(+? SEXP)' 2839 `(+? SEXP)'
2836 like `one-or-more', but always produces a non-greedy regexp. 2840 like `one-or-more', but always produces a non-greedy regexp.
2837 2841
2838 `(zero-or-one SEXP)' 2842 `(zero-or-one SEXP)'
2839 matches zero or one occurrences of A. 2843 matches zero or one occurrences of A.
2840 2844
2841 `(optional SEXP)' 2845 `(optional SEXP)'
2842 like `zero-or-one'. 2846 like `zero-or-one'.
2843 2847
2844 `(? SEXP)' 2848 `(? SEXP)'
2845 like `zero-or-one', but always produces a greedy regexp. 2849 like `zero-or-one', but always produces a greedy regexp.