aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorLuc Teirlinck2004-05-01 22:24:39 +0000
committerLuc Teirlinck2004-05-01 22:24:39 +0000
commit0dbc1dd0d4950771b10fc769b4e2f2c1ec7216e0 (patch)
tree75503e44067ef5ad5554baa910182aff6844ed84 /etc
parentd9bf7950c2d6f823a9f9b16c8bbc723d0b9c768e (diff)
downloademacs-0dbc1dd0d4950771b10fc769b4e2f2c1ec7216e0.tar.gz
emacs-0dbc1dd0d4950771b10fc769b4e2f2c1ec7216e0.zip
*** empty log message ***
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS18
1 files changed, 16 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 5c81d1e726f..54cd79bcd86 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -91,8 +91,22 @@ types any more. Add -DUSE_LISP_UNION_TYPE if you want union types.
91* Changes in Emacs 21.4 91* Changes in Emacs 21.4
92 92
93--- 93---
94** The IELM prompt is now, by default, read-only. This can be 94** The comint prompt can now be made read-only, using the new user
95controlled with the new user option `ielm-prompt-read-only'. 95option `comint-prompt-read-only'. This is not enabled by default,
96except in IELM buffers. The read-only status of IELM prompts can be
97controlled with the new user option `ielm-prompt-read-only', which
98overrides `comint-prompt-read-only'. The new commands
99`comint-kill-whole-line' and `comint-kill-region' support editing
100comint buffers with read-only prompts. `comint-kill-whole-line' is
101like `kill-whole-line', but ignores both read-only and field
102properties. Hence, it will always kill entire lines, including any
103prompts. `comint-kill-region' is like `kill-region', except that it
104ignores read-only properties, if it is safe to do so. This means that
105if any part of a prompt is deleted, then the entire prompt must be
106deleted and that all prompts must stay at the beginning of a line. If
107this is not the case, then `comint-kill-region' behaves just like
108`kill-region' if read-only are involved: it copies the text to the
109kill-ring, but does not delete it.
96 110
97** You can now use next-error (C-x `) and previous-error to advance to 111** You can now use next-error (C-x `) and previous-error to advance to
98the next/previous matching line found by M-x occur. 112the next/previous matching line found by M-x occur.