diff options
author | Juri Linkov <juri@linkov.net> | 2015-10-30 02:04:42 +0200 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2015-10-30 02:04:42 +0200 |
commit | dba0659c3b37a413245b424d75e8989b0bb46a07 (patch) | |
tree | 92607e2f66cedc922a46ebbed59842bd08fcf998 /lisp/ielm.el | |
parent | 9dcbcbf2593935151b638330360cfb21efbc3f40 (diff) | |
download | emacs-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.el | 2 |
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 |