mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
* 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
This commit is contained in:
parent
9dcbcbf259
commit
dba0659c3b
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user