aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-01-20 19:12:20 +0000
committerKarl Heuer1995-01-20 19:12:20 +0000
commitbe6f02af4fb15402973875c664f6f93ca345d921 (patch)
tree5f4c18be9141960ceea124079097391f0512e4a1
parent86c10ecbb6dbbdcd594c3e92b4336c3863ee7706 (diff)
downloademacs-be6f02af4fb15402973875c664f6f93ca345d921.tar.gz
emacs-be6f02af4fb15402973875c664f6f93ca345d921.zip
(center-line): fill-column is a var, not a function.
-rw-r--r--lisp/textmodes/text-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el
index 404302c431f..6696bec5bc2 100644
--- a/lisp/textmodes/text-mode.el
+++ b/lisp/textmodes/text-mode.el
@@ -155,6 +155,6 @@ the distance between the end of the text and `fill-column'."
155 (delete-horizontal-space) 155 (delete-horizontal-space)
156 (setq line-length (current-column)) 156 (setq line-length (current-column))
157 (indent-line-to 157 (indent-line-to
158 (+ lm (/ (- (fill-column) lm line-length) 2)))))) 158 (+ lm (/ (- fill-column lm line-length) 2))))))
159 159
160;;; text-mode.el ends here 160;;; text-mode.el ends here