From: Karl Heuer Date: Fri, 20 Jan 1995 19:12:20 +0000 (+0000) Subject: (center-line): fill-column is a var, not a function. X-Git-Tag: emacs-19.34~5364 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=be6f02af4fb15402973875c664f6f93ca345d921;p=emacs.git (center-line): fill-column is a var, not a function. --- 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'." (delete-horizontal-space) (setq line-length (current-column)) (indent-line-to - (+ lm (/ (- (fill-column) lm line-length) 2)))))) + (+ lm (/ (- fill-column lm line-length) 2)))))) ;;; text-mode.el ends here