]> code.delx.au - gnu-emacs/blobdiff - lisp/ielm.el
* lisp/ielm.el (ielm-indent-line): Use non-nil arg of comint-bol
[gnu-emacs] / lisp / ielm.el
index 183f8a6ce3ec9ded9a3105c058b2aaa2633b6653..b035432165615232d74a3a10c822a5d1a92d8601 100644 (file)
@@ -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