diff options
author | Miles Bader <miles@gnu.org> | 2000-08-07 15:43:46 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2000-08-07 15:43:46 +0000 |
commit | 66b6c480a881982cdedf52e59b746e32cd79bf5e (patch) | |
tree | 5d238d919cfd211a15a10bc23b60e4dab246ed89 | |
parent | 46645f4bb21b5dc678000a67aaf74a9939bdb2d2 (diff) | |
download | emacs-66b6c480a881982cdedf52e59b746e32cd79bf5e.tar.gz |
Add note about comint field changes (`comint-prompt-regexp removal').
-rw-r--r-- | etc/NEWS | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -596,6 +596,15 @@ mode. ** Comint (subshell) changes +By default, comint no longer uses the variable `comint-prompt-regexp' to +distiguish prompts from user-input. Instead, it notices which parts of +the text were output by the process, and which entered by the user, and +attaches `field' properties to allow emacs commands to use this information. +Common movement commands, notably beginning-of-line, respect field +boundaries in a fairly natural manner. +To disable this feature, and use the old behavior, set the variable +`comint-use-prompt-regexp-instead-of-fields' to a non-nil value. + Comint now includes new features to send commands to running processes and redirect the output to a designated buffer or buffers. |