emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-24 18a89a0 1/2: Better support for multi-line shell


From: João Távora
Subject: [Emacs-diffs] emacs-24 18a89a0 1/2: Better support for multi-line shell input.
Date: Tue, 13 Jan 2015 07:52:26 +0000

branch: emacs-24
commit 18a89a069c3d66ddb96e512f254f67f69d51ae22
Author: Juri Linkov <address@hidden>
Commit: João Távora <address@hidden>

    Better support for multi-line shell input.
    
    * lisp/comint.el (comint-history-isearch-search)
    (comint-history-isearch-wrap): Use field-beginning instead of
    comint-line-beginning-position.
    (comint-send-input): Go to the end of the field instead of the end
    of the line to accept whole multi-line input.
    http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00305.html
    
    [backport from trunk]
---
 lisp/ChangeLog |    9 +++++++++
 lisp/comint.el |   10 +++++-----
 2 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8481dd1..ff384a4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
+2015-01-13  Juri Linkov  <address@hidden>
+
+        * comint.el (comint-history-isearch-search)
+       (comint-history-isearch-wrap): Use field-beginning instead of
+       comint-line-beginning-position.
+       (comint-send-input): Go to the end of the field instead of the end
+       of the line to accept whole multi-line input.
+       http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00305.html
+
 2015-01-09  Eli Zaretskii  <address@hidden>
 
        * net/net-utils.el (net-utils-run-program, net-utils-run-simple):
diff --git a/lisp/comint.el b/lisp/comint.el
index 257cacb..cd6ecb4 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -1475,7 +1475,7 @@ Intended to be added to `isearch-mode-hook' in 
`comint-mode'."
       (or
        ;; 1. First try searching in the initial comint text
        (funcall search-fun string
-               (if isearch-forward bound (comint-line-beginning-position))
+               (if isearch-forward bound (field-beginning))
                noerror)
        ;; 2. If the above search fails, start putting next/prev history
        ;; elements in the comint successively, and search the string
@@ -1491,7 +1491,7 @@ Intended to be added to `isearch-mode-hook' in 
`comint-mode'."
                        (when (null comint-input-ring-index)
                          (error "End of history; no next item"))
                        (comint-next-input 1)
-                       (goto-char (comint-line-beginning-position)))
+                       (goto-char (field-beginning)))
                       (t
                        ;; Signal an error here explicitly, because
                        ;; `comint-previous-input' doesn't signal an error.
@@ -1509,7 +1509,7 @@ Intended to be added to `isearch-mode-hook' in 
`comint-mode'."
                                      (unless isearch-forward
                                        ;; For backward search, don't search
                                        ;; in the comint prompt
-                                       (comint-line-beginning-position))
+                                       (field-beginning))
                                      noerror)))
               ;; Return point of the new search result
               (point))
@@ -1557,7 +1557,7 @@ or to the last history element for a backward search."
       (comint-goto-input (1- (ring-length comint-input-ring)))
     (comint-goto-input nil))
   (setq isearch-success t)
-  (goto-char (if isearch-forward (comint-line-beginning-position) 
(point-max))))
+  (goto-char (if isearch-forward (field-beginning) (point-max))))
 
 (defun comint-history-isearch-push-state ()
   "Save a function restoring the state of input history search.
@@ -1775,7 +1775,7 @@ Similarly for Soar, Scheme, etc."
       (widen)
       (let* ((pmark (process-mark proc))
              (intxt (if (>= (point) (marker-position pmark))
-                        (progn (if comint-eol-on-send (end-of-line))
+                        (progn (if comint-eol-on-send (goto-char (field-end)))
                                (buffer-substring pmark (point)))
                       (let ((copy (funcall comint-get-old-input)))
                         (goto-char pmark)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]