aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ielm.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/ielm.el b/lisp/ielm.el
index 2f2a9861e6c..a0973800271 100644
--- a/lisp/ielm.el
+++ b/lisp/ielm.el
@@ -179,9 +179,7 @@ This variable is buffer-local.")
179 179
180(defun ielm-indent-line nil 180(defun ielm-indent-line nil
181 "Indent the current line as Lisp code if it is not a prompt line." 181 "Indent the current line as Lisp code if it is not a prompt line."
182 (if (save-excursion 182 (when (save-excursion (comint-bol) (bolp))
183 (beginning-of-line)
184 (looking-at comint-prompt-regexp)) nil
185 (lisp-indent-line))) 183 (lisp-indent-line)))
186 184
187;;; Working buffer manipulation 185;;; Working buffer manipulation