summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2015-03-19 09:11:19 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2015-03-19 09:11:19 +0200
commitb0dab074f5451d712f7ec274a7155f30197937a6 (patch)
tree62b68c071ed816b583c50a4321220f360ed0fdd8
parentf3f62e6fa2154856a4e963457f573b86763189e1 (diff)
Code style
-rw-r--r--cider-repl.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-repl.el b/cider-repl.el
index ec4af188..6a8c2a52 100644
--- a/cider-repl.el
+++ b/cider-repl.el
@@ -666,7 +666,7 @@ text property `cider-old-input'."
"Return the position of the end of the line preceding the beginning of input."
(save-excursion
(goto-char cider-repl-input-start-mark)
- ;; do not use previous-line, but line-move with noerror
+ ;; do not use `previous-line', but `line-move' with noerror
;; moving up from the first line should not throw error
(line-move -1 t nil nil)
(line-end-position)))