diff options
| author | Miles Bader | 2000-08-07 15:10:57 +0000 |
|---|---|---|
| committer | Miles Bader | 2000-08-07 15:10:57 +0000 |
| commit | 46645f4bb21b5dc678000a67aaf74a9939bdb2d2 (patch) | |
| tree | 5aaa523ee4574f19d32f931ac91454fd2fd27f3c | |
| parent | e379efd26360c0bfd20377941bfde5602d3c65db (diff) | |
| download | emacs-46645f4bb21b5dc678000a67aaf74a9939bdb2d2.tar.gz emacs-46645f4bb21b5dc678000a67aaf74a9939bdb2d2.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 414b42a9037..5f7916cc214 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,52 @@ | |||
| 1 | 2000-08-03 Miles Bader <miles@gnu.org> | ||
| 2 | |||
| 3 | * comint.el (comint-use-prompt-regexp-instead-of-fields): | ||
| 4 | New variable. | ||
| 5 | (comint-prompt-regexp, comint-get-old-input): Document dependence on | ||
| 6 | comint-use-prompt-regexp-instead-of-fields. | ||
| 7 | (comint-send-input): Add `input' field property to stuff we send to | ||
| 8 | the process, if comint-use-prompt-regexp-instead-of-fields is nil. | ||
| 9 | (comint-output-filter): Add `output' field property to process | ||
| 10 | output, if comint-use-prompt-regexp-instead-of-fields is nil. | ||
| 11 | (comint-replace-by-expanded-history) | ||
| 12 | (comint-get-old-input-default, comint-show-output) | ||
| 13 | (comint-backward-matching-input, comint-forward-matching-input) | ||
| 14 | (comint-next-prompt, comint-previous-prompt): Use field | ||
| 15 | properties if comint-use-prompt-regexp-instead-of-fields is nil. | ||
| 16 | (comint-line-beginning-position): New function. | ||
| 17 | (comint-bol): Use comint-line-beginning-position. Make ARG optional. | ||
| 18 | (comint-replace-by-expanded-history-before-point): Use | ||
| 19 | comint-line-beginning-position and line-end-position. | ||
| 20 | (comint-last-output-overlay): New variable. | ||
| 21 | (comint-mode): Make `comint-last-output-overlay' buffer-local. | ||
| 22 | |||
| 23 | * shell.el (shell-prompt-pattern): Doc change. | ||
| 24 | (shell-backward-command): Use line-beginning-position. | ||
| 25 | |||
| 26 | * gud.el (gud-gdb-complete-command): Use | ||
| 27 | comint-line-beginning-position. | ||
| 28 | |||
| 29 | * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if | ||
| 30 | comint-bol doesn't actually go to the beginning of the line. | ||
| 31 | |||
| 32 | * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp | ||
| 33 | if comint-use-prompt-regexp-instead-of-fields is non-nil. | ||
| 34 | (try-expand-line-all-buffers): Likewise. | ||
| 35 | |||
| 36 | * progmodes/sql.el (sql-magic-go): Use comint-bol instead of | ||
| 37 | explicitly matching comint-prompt-regexp. | ||
| 38 | (sql-copy-column): Use comint-line-beginning-position instead of | ||
| 39 | explicitly matching comint-prompt-regexp. | ||
| 40 | |||
| 41 | * progmodes/octave-inf.el (inferior-octave-complete): Use | ||
| 42 | comint-line-beginning-position. | ||
| 43 | |||
| 44 | * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change. | ||
| 45 | |||
| 46 | * progmodes/idlw-shell.el (idlwave-shell-send-command): When | ||
| 47 | looking for a prompt, use `forward-line 0' instead of | ||
| 48 | `beginning-of-line', to avoid getting caught by an input field. | ||
| 49 | |||
| 1 | 2000-08-07 Gerd Moellmann <gerd@gnu.org> | 50 | 2000-08-07 Gerd Moellmann <gerd@gnu.org> |
| 2 | 51 | ||
| 3 | * files.el (shell-quote-wildcard-pattern): Make sure to return | 52 | * files.el (shell-quote-wildcard-pattern): Make sure to return |