summaryrefslogtreecommitdiff
path: root/lisp/ielm.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2015-10-30 02:04:42 +0200
committerJuri Linkov <juri@linkov.net>2015-10-30 02:04:42 +0200
commitdba0659c3b37a413245b424d75e8989b0bb46a07 (patch)
tree92607e2f66cedc922a46ebbed59842bd08fcf998 /lisp/ielm.el
parent9dcbcbf2593935151b638330360cfb21efbc3f40 (diff)
downloademacs-dba0659c3b37a413245b424d75e8989b0bb46a07.tar.gz
* 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
Diffstat (limited to 'lisp/ielm.el')
-rw-r--r--lisp/ielm.el2
1 files changed, 1 insertions, 1 deletions
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