]> git.eshelyaron.com Git - emacs.git/commitdiff
Handle errors in `comint-strip-ctrl-m' in some cases
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 2 Feb 2021 15:11:13 +0000 (16:11 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 2 Feb 2021 15:11:18 +0000 (16:11 +0100)
* lisp/comint.el (comint-strip-ctrl-m): Don't signal errors when
used noninteractively (bug#33115).

lisp/comint.el

index 432307934a7b5b13cda6e1ef41db9f600841fd44..a9633d08ba17d0423e998c3bdf6a0bdc4aa5541b 100644 (file)
@@ -2253,15 +2253,23 @@ This function could be on `comint-output-filter-functions' or bound to a key."
   "Strip trailing `^M' characters from the current output group.
 This function could be on `comint-output-filter-functions' or bound to a key."
   (interactive)
-  (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
-    (save-excursion
-      (condition-case nil
-         (goto-char
-          (if (called-interactively-p 'interactive)
-              comint-last-input-end comint-last-output-start))
-       (error nil))
-      (while (re-search-forward "\r+$" pmark t)
-       (replace-match "" t t)))))
+  (let ((process (get-buffer-process (current-buffer))))
+    (if (not process)
+        ;; This function may be used in
+        ;; `comint-output-filter-functions', and in that case, if
+        ;; there's no process, then we should do nothing.  If
+        ;; interactive, report an error.
+        (when (called-interactively-p 'interactive)
+          (error "No process in the current buffer"))
+      (let ((pmark (process-mark process)))
+        (save-excursion
+          (condition-case nil
+             (goto-char
+              (if (called-interactively-p 'interactive)
+                  comint-last-input-end comint-last-output-start))
+           (error nil))
+          (while (re-search-forward "\r+$" pmark t)
+           (replace-match "" t t)))))))
 (define-obsolete-function-alias 'shell-strip-ctrl-m #'comint-strip-ctrl-m "27.1")
 
 (defun comint-show-maximum-output ()