aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2000-08-07 15:43:46 +0000
committerMiles Bader2000-08-07 15:43:46 +0000
commit66b6c480a881982cdedf52e59b746e32cd79bf5e (patch)
tree5d238d919cfd211a15a10bc23b60e4dab246ed89
parent46645f4bb21b5dc678000a67aaf74a9939bdb2d2 (diff)
downloademacs-66b6c480a881982cdedf52e59b746e32cd79bf5e.tar.gz
emacs-66b6c480a881982cdedf52e59b746e32cd79bf5e.zip
Add note about comint field changes (`comint-prompt-regexp removal').
-rw-r--r--etc/NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index fe9855fa73d..dcf8b55e992 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -596,6 +596,15 @@ mode.
596 596
597** Comint (subshell) changes 597** Comint (subshell) changes
598 598
599By default, comint no longer uses the variable `comint-prompt-regexp' to
600distiguish prompts from user-input. Instead, it notices which parts of
601the text were output by the process, and which entered by the user, and
602attaches `field' properties to allow emacs commands to use this information.
603Common movement commands, notably beginning-of-line, respect field
604boundaries in a fairly natural manner.
605To disable this feature, and use the old behavior, set the variable
606`comint-use-prompt-regexp-instead-of-fields' to a non-nil value.
607
599Comint now includes new features to send commands to running processes 608Comint now includes new features to send commands to running processes
600and redirect the output to a designated buffer or buffers. 609and redirect the output to a designated buffer or buffers.
601 610