Mercurial > emacs
comparison lisp/ChangeLog @ 30649:a161c2c79c9f
*** empty log message ***
author | Miles Bader <miles@gnu.org> |
---|---|
date | Mon, 07 Aug 2000 15:10:57 +0000 |
parents | 3ea6ae5c3939 |
children | 61c2f9fcb8f6 |
comparison
equal
deleted
inserted
replaced
30648:4ee57139dc05 | 30649:a161c2c79c9f |
---|---|
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 |
4 PATTERN, in the Unix case. | 53 PATTERN, in the Unix case. |
5 | 54 |