diff options
| author | Luc Teirlinck | 2005-04-26 23:26:20 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-04-26 23:26:20 +0000 |
| commit | 85ab9f4e9440f81d46684d2461acb296c10978b7 (patch) | |
| tree | e8acd852802d000a2e78094dcaaef225a652c672 | |
| parent | e10f0e78f6b617ac3425748a99a3b64a3fbd3aee (diff) | |
| download | emacs-85ab9f4e9440f81d46684d2461acb296c10978b7.tar.gz emacs-85ab9f4e9440f81d46684d2461acb296c10978b7.zip | |
(inferior-emacs-lisp-mode): Set paragraph-separate buffer locally to
"\\'". Replace obsolete `comint-use-prompt-regexp-instead-of-fields'
with `comint-use-prompt-regexp'.
| -rw-r--r-- | lisp/ChangeLog | 29 | ||||
| -rw-r--r-- | lisp/ielm.el | 3 |
2 files changed, 31 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 959961d5844..1f5290a749d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,32 @@ | |||
| 1 | 2005-04-26 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * shell.el (shell-prompt-pattern): Doc fix. | ||
| 4 | (shell-mode): Set paragraph-separate buffer locally to "\\'". | ||
| 5 | |||
| 6 | * comint.el (comint-prompt-regexp, comint-get-old-input) | ||
| 7 | (comint-use-prompt-regexp) | ||
| 8 | (comint-use-prompt-regexp-instead-of-fields) | ||
| 9 | (comint-replace-by-expanded-history, comint-send-input) | ||
| 10 | (comint-output-filter, comint-get-old-input-default) | ||
| 11 | (comint-line-beginning-position, comint-bol, comint-show-output) | ||
| 12 | (comint-backward-matching-input, comint-forward-matching-input) | ||
| 13 | (comint-next-prompt, comint-previous-prompt): Rename | ||
| 14 | `comint-use-prompt-regexp-instead-of-fields' to | ||
| 15 | `comint-use-prompt-regexp'. Keep old name as alias and declare | ||
| 16 | obsolete. | ||
| 17 | (comint-use-prompt-regexp): Shorten first line of doc string. | ||
| 18 | |||
| 19 | * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change. | ||
| 20 | Set paragraph-separate buffer locally to "\\'". | ||
| 21 | |||
| 22 | * hippie-exp.el (try-expand-line, try-expand-line-all-buffers): | ||
| 23 | Adapt to above name change. | ||
| 24 | |||
| 25 | * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp) | ||
| 26 | (smbclient-prompt-regexp): Ditto. | ||
| 27 | |||
| 28 | * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto. | ||
| 29 | |||
| 1 | 2005-04-27 Nick Roberts <nickrob@snap.net.nz> | 30 | 2005-04-27 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 31 | ||
| 3 | * progmodes/gdb-ui.el (gdb-location-alist): Rename from | 32 | * progmodes/gdb-ui.el (gdb-location-alist): Rename from |
diff --git a/lisp/ielm.el b/lisp/ielm.el index 5ef6ff1e1eb..65654ca2c7a 100644 --- a/lisp/ielm.el +++ b/lisp/ielm.el | |||
| @@ -482,6 +482,7 @@ Customized bindings may be defined in `ielm-map', which currently contains: | |||
| 482 | (interactive) | 482 | (interactive) |
| 483 | (comint-mode) | 483 | (comint-mode) |
| 484 | (setq comint-prompt-regexp (concat "^" (regexp-quote ielm-prompt))) | 484 | (setq comint-prompt-regexp (concat "^" (regexp-quote ielm-prompt))) |
| 485 | (set (make-local-variable 'paragraph-separate) "\\'") | ||
| 485 | (make-local-variable 'paragraph-start) | 486 | (make-local-variable 'paragraph-start) |
| 486 | (setq paragraph-start comint-prompt-regexp) | 487 | (setq paragraph-start comint-prompt-regexp) |
| 487 | (setq comint-input-sender 'ielm-input-sender) | 488 | (setq comint-input-sender 'ielm-input-sender) |
| @@ -538,7 +539,7 @@ Customized bindings may be defined in `ielm-map', which currently contains: | |||
| 538 | ;; Add a silly header | 539 | ;; Add a silly header |
| 539 | (insert ielm-header) | 540 | (insert ielm-header) |
| 540 | (ielm-set-pm (point-max)) | 541 | (ielm-set-pm (point-max)) |
| 541 | (unless comint-use-prompt-regexp-instead-of-fields | 542 | (unless comint-use-prompt-regexp |
| 542 | (let ((inhibit-read-only t)) | 543 | (let ((inhibit-read-only t)) |
| 543 | (add-text-properties | 544 | (add-text-properties |
| 544 | (point-min) (point-max) | 545 | (point-min) (point-max) |