aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorStefan Monnier2001-10-30 08:51:51 +0000
committerStefan Monnier2001-10-30 08:51:51 +0000
commit8e8223e20f0a77272aa5970e1f90c4e77fb20f32 (patch)
tree2eec7a5b1a7d75fd84dce9242dbf4b7a6e3c7ebc /etc
parent03e3e2e91f3ea169ea3c7878ced22a1ca320e54e (diff)
downloademacs-8e8223e20f0a77272aa5970e1f90c4e77fb20f32.tar.gz
emacs-8e8223e20f0a77272aa5970e1f90c4e77fb20f32.zip
*** empty log message ***
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS35
1 files changed, 34 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index a616b99b760..358b5bbb43c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -8,6 +8,16 @@ For older news, see the file ONEWS
8 8
9* Changes in Emacs 21.2 9* Changes in Emacs 21.2
10 10
11** tab-always-indent can be set to `never' to make sure indent-for-tab-command
12always tabs rather than indents.
13
14** in fill, you can now customize fill-nobreak-predicate and two
15sample predicates are provided (fill-single-word-nobreak-p and
16fill-french-nobreak-p).
17
18** In texinfo-mode, if font-lock is used then updating one of the `foo's
19in `@foo ... @end foo' updates the other one on the fly.
20
11** New user option `add-log-always-start-new-record'. 21** New user option `add-log-always-start-new-record'.
12When this option is enabled, M-x add-change-log-entry will always 22When this option is enabled, M-x add-change-log-entry will always
13start a new record regardless of when the last record is. 23start a new record regardless of when the last record is.
@@ -25,7 +35,7 @@ instead of using default-major-mode.
25** Byte compiler warning and error messages have been brought more 35** Byte compiler warning and error messages have been brought more
26in line with the output of other GNU tools. 36in line with the output of other GNU tools.
27 37
28** Lisp-mode now uses font-lock-docstring-face for the docstrings. 38** Lisp-mode now uses font-lock-doc-face for the docstrings.
29 39
30** perl-mode has a new variable `perl-indent-continued-arguments'. 40** perl-mode has a new variable `perl-indent-continued-arguments'.
31 41
@@ -88,6 +98,29 @@ SQL buffer.
88 98
89* Lisp Changes in Emacs 21.2 99* Lisp Changes in Emacs 21.2
90 100
101** The default value of paragraph-start and indent-line-function has
102been changed to reflect the one used in text-mode rather than the one
103used in indented-text-mode.
104
105** New function `text-clone-create'. Text clones are chunks of text
106that are kept identical by transparently propagating changes from one
107clone to the other.
108
109** font-lock can manage arbitrary text-properties beside `face'.
110*** the FACENAME returned in font-lock-keywords can be a list
111of the form (face FACE PROP1 VAL1 PROP@ VAL2 ...) so you can set
112other properties than `face'.
113*** font-lock-extra-managed-props can be set to make sure those extra
114properties are automatically cleaned up by font-lock.
115
116** The new function `run-mode-hooks' and the new macro `delay-mode-hooks'
117are used by define-derived-mode to make sure the mode hook for the
118parent mode is run at the end of the child mode.
119
120** `provide' and `featurep' now accept an optional second argument
121to test/provide subfeatures. Also `provide' now checks `after-load-alist'
122and run any code associated with the provided feature.
123
91** The variable `compilation-parse-errors-filename-function' can 124** The variable `compilation-parse-errors-filename-function' can
92be used to transform filenames found in compilation output. 125be used to transform filenames found in compilation output.
93 126