]> git.eshelyaron.com Git - emacs.git/commitdiff
(center-line): fill-column is a var, not a function.
authorKarl Heuer <kwzh@gnu.org>
Fri, 20 Jan 1995 19:12:20 +0000 (19:12 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 20 Jan 1995 19:12:20 +0000 (19:12 +0000)
lisp/textmodes/text-mode.el

index 404302c431fe1eac182651346bc59326a0a2ecce..6696bec5bc267a8b62442acc40ab05c91c6d25b2 100644 (file)
@@ -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