aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Steingold2001-10-23 15:46:01 +0000
committerSam Steingold2001-10-23 15:46:01 +0000
commit7901498008a117480d1c502f95b106b337edd6ef (patch)
tree97a42b2649b1538ea1312c55476ac61e4df51bc4
parent5cb881112a846610f582dd84a350dcb8fa79967c (diff)
downloademacs-7901498008a117480d1c502f95b106b337edd6ef.tar.gz
emacs-7901498008a117480d1c502f95b106b337edd6ef.zip
mention html-xhtml
-rw-r--r--etc/NEWS14
1 files changed, 9 insertions, 5 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 652f8728c02..8a18c3ae396 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -8,9 +8,13 @@ For older news, see the file ONEWS
8 8
9* Changes in Emacs 21.2 9* Changes in Emacs 21.2
10 10
11** New user option `html-xhtml'.
12When this option is enabled, HTML tags are inserted in XHTML style,
13i.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
12initial-major-mode, which normally is lisp-interaction-mode, 16initial-major-mode, which normally is lisp-interaction-mode,
13instead of using default-major-mode. 17instead 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
16in line with the output of other GNU tools. 20in line with the output of other GNU tools.
@@ -2380,7 +2384,7 @@ will not have any effect when support for this variable is removed.
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
2384allows the animated display of strings. 2388allows 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
@@ -2623,7 +2627,7 @@ CHAR
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))'
@@ -2825,7 +2829,7 @@ CHAR
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
@@ -2837,7 +2841,7 @@ CHAR
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