comparison etc/NEWS @ 55302:56bb135eddf9

*** empty log message ***
author Luc Teirlinck <teirllm@auburn.edu>
date Sat, 01 May 2004 22:24:39 +0000
parents fd5403ebeab1
children d71fb69263a2
comparison
equal deleted inserted replaced
55301:c2bea9cc10a3 55302:56bb135eddf9
89 89
90 90
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
95 controlled with the new user option `ielm-prompt-read-only'. 95 option `comint-prompt-read-only'. This is not enabled by default,
96 except in IELM buffers. The read-only status of IELM prompts can be
97 controlled with the new user option `ielm-prompt-read-only', which
98 overrides `comint-prompt-read-only'. The new commands
99 `comint-kill-whole-line' and `comint-kill-region' support editing
100 comint buffers with read-only prompts. `comint-kill-whole-line' is
101 like `kill-whole-line', but ignores both read-only and field
102 properties. Hence, it will always kill entire lines, including any
103 prompts. `comint-kill-region' is like `kill-region', except that it
104 ignores read-only properties, if it is safe to do so. This means that
105 if any part of a prompt is deleted, then the entire prompt must be
106 deleted and that all prompts must stay at the beginning of a line. If
107 this 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
109 kill-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
98 the next/previous matching line found by M-x occur. 112 the next/previous matching line found by M-x occur.
99 113
100 ** Telnet will now prompt you for a port number with C-u M-x telnet. 114 ** Telnet will now prompt you for a port number with C-u M-x telnet.