diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-09-20 02:26:22 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-09-20 02:26:22 +0200 |
commit | 596880ea94f64b783cb3f97be611281924b7028b (patch) | |
tree | 8ef8c9002f33041198b4a505e3b9a70fc3215e53 /lisp/emacs-lisp | |
parent | 7d7013341081f77fadf2abf4810bafea550c335f (diff) | |
download | emacs-596880ea94f64b783cb3f97be611281924b7028b.tar.gz emacs-596880ea94f64b783cb3f97be611281924b7028b.tar.bz2 emacs-596880ea94f64b783cb3f97be611281924b7028b.zip |
* emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/smie.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/smie.el b/lisp/emacs-lisp/smie.el index 57d3dbdd724..0267e9771f5 100644 --- a/lisp/emacs-lisp/smie.el +++ b/lisp/emacs-lisp/smie.el @@ -865,7 +865,7 @@ to `smie-indent-basic'.") (forward-char 1)) (skip-chars-forward " \t") (eolp)) - (not (smie-bolp)))) + (not (smie-indent--bolp)))) (defun smie-indent--bolp () (save-excursion (skip-chars-backward " \t") (bolp))) |