diff options
| author | Luc Teirlinck | 2005-04-26 23:13:46 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-04-26 23:13:46 +0000 |
| commit | d7210472aa363871637970646de32bd9dc9f78ab (patch) | |
| tree | d6304dca8d160f6df2939e00e2205bf56abfbd4d | |
| parent | 03a610f742578e34097221d2e05e17dfb7f02627 (diff) | |
| download | emacs-d7210472aa363871637970646de32bd9dc9f78ab.tar.gz emacs-d7210472aa363871637970646de32bd9dc9f78ab.zip | |
(try-expand-line, try-expand-line-all-buffers):
`comint-use-prompt-regexp-instead-of-fields' has been renamed to
`comint-use-prompt-regexp'.
| -rw-r--r-- | lisp/hippie-exp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/hippie-exp.el b/lisp/hippie-exp.el index 91eb01b5193..bd726564da6 100644 --- a/lisp/hippie-exp.el +++ b/lisp/hippie-exp.el | |||
| @@ -634,7 +634,7 @@ for subsequent calls (for further possible completions of the same | |||
| 634 | string). It returns t if a new completion is found, nil otherwise." | 634 | string). It returns t if a new completion is found, nil otherwise." |
| 635 | (let ((expansion ()) | 635 | (let ((expansion ()) |
| 636 | (strip-prompt (and (get-buffer-process (current-buffer)) | 636 | (strip-prompt (and (get-buffer-process (current-buffer)) |
| 637 | comint-use-prompt-regexp-instead-of-fields | 637 | comint-use-prompt-regexp |
| 638 | comint-prompt-regexp))) | 638 | comint-prompt-regexp))) |
| 639 | (if (not old) | 639 | (if (not old) |
| 640 | (progn | 640 | (progn |
| @@ -681,7 +681,7 @@ for subsequent calls (for further possible completions of the same | |||
| 681 | string). It returns t if a new completion is found, nil otherwise." | 681 | string). It returns t if a new completion is found, nil otherwise." |
| 682 | (let ((expansion ()) | 682 | (let ((expansion ()) |
| 683 | (strip-prompt (and (get-buffer-process (current-buffer)) | 683 | (strip-prompt (and (get-buffer-process (current-buffer)) |
| 684 | comint-use-prompt-regexp-instead-of-fields | 684 | comint-use-prompt-regexp |
| 685 | comint-prompt-regexp)) | 685 | comint-prompt-regexp)) |
| 686 | (buf (current-buffer)) | 686 | (buf (current-buffer)) |
| 687 | (orig-case-fold-search case-fold-search)) | 687 | (orig-case-fold-search case-fold-search)) |
| @@ -708,7 +708,7 @@ string). It returns t if a new completion is found, nil otherwise." | |||
| 708 | (widen)) | 708 | (widen)) |
| 709 | (goto-char he-search-loc) | 709 | (goto-char he-search-loc) |
| 710 | (setq strip-prompt (and (get-buffer-process (current-buffer)) | 710 | (setq strip-prompt (and (get-buffer-process (current-buffer)) |
| 711 | comint-use-prompt-regexp-instead-of-fields | 711 | comint-use-prompt-regexp |
| 712 | comint-prompt-regexp)) | 712 | comint-prompt-regexp)) |
| 713 | (setq expansion | 713 | (setq expansion |
| 714 | (let ((case-fold-search orig-case-fold-search)) | 714 | (let ((case-fold-search orig-case-fold-search)) |