From dba0659c3b37a413245b424d75e8989b0bb46a07 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Fri, 30 Oct 2015 02:04:42 +0200 Subject: [PATCH] * lisp/ielm.el (ielm-indent-line): Use non-nil arg of comint-bol to go to the beginning of text line instead of command line. http://lists.gnu.org/archive/html/emacs-devel/2015-10/msg02360.html --- lisp/ielm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ielm.el b/lisp/ielm.el index 183f8a6ce3e..b0354321656 100644 --- a/lisp/ielm.el +++ b/lisp/ielm.el @@ -217,7 +217,7 @@ This variable is buffer-local.") (defun ielm-indent-line nil "Indent the current line as Lisp code if it is not a prompt line." - (when (save-excursion (comint-bol) (bolp)) + (when (save-excursion (comint-bol t) (bolp)) (lisp-indent-line))) ;;; Working buffer manipulation -- 2.39.5