aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/smie.el
diff options
context:
space:
mode:
authorDmitry Gutov2017-12-02 19:58:52 +0000
committerDmitry Gutov2017-12-02 19:58:52 +0000
commit6e75a6316fb7dcf1e089a063c83afffee2f160b7 (patch)
tree4bde52e6e682813edae535b45bca369a9b9a9b30 /lisp/emacs-lisp/smie.el
parent243a43bfcd4243bd6840f048625f8c4769b4b55b (diff)
downloademacs-6e75a6316fb7dcf1e089a063c83afffee2f160b7.tar.gz
emacs-6e75a6316fb7dcf1e089a063c83afffee2f160b7.zip
Fix prog-first-column uses as variablescratch/widen-less
Diffstat (limited to 'lisp/emacs-lisp/smie.el')
-rw-r--r--lisp/emacs-lisp/smie.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/smie.el b/lisp/emacs-lisp/smie.el
index da1e12b1408..e765e07d1db 100644
--- a/lisp/emacs-lisp/smie.el
+++ b/lisp/emacs-lisp/smie.el
@@ -1457,7 +1457,7 @@ in order to figure out the indentation of some other (further down) point."
1457 ;; Start the file at column 0. 1457 ;; Start the file at column 0.
1458 (save-excursion 1458 (save-excursion
1459 (forward-comment (- (point))) 1459 (forward-comment (- (point)))
1460 (if (bobp) (prog-first-column)))) 1460 (if (bobp) prog-first-column)))
1461 1461
1462(defun smie-indent-close () 1462(defun smie-indent-close ()
1463 ;; Align close paren with opening paren. 1463 ;; Align close paren with opening paren.