diff -r d426b23b3894 -r 748c6e05fe87 .emacs-my --- a/.emacs-my Sun Mar 14 20:03:11 2010 +0200 +++ b/.emacs-my Sun Mar 14 20:07:46 2010 +0200 @@ -459,6 +459,9 @@ (setq-default fill-column 78) +(defvar my-fill-column 100 + "I use greater value then 78 for comment in prog source.") + ;; By default used American convention - sentence and with two spaces. Change ;; it to one space. Has affect on filling and M-a, M-e commands. (setq sentence-end-double-space nil) @@ -802,12 +805,12 @@ (setq-default comment-style (quote indent)) (setq-default comment-column 44) -(setq-default comment-fill-column 100) +(setq-default comment-fill-column my-fill-column) (mapc (lambda (mode) (add-hook mode (lambda () - (setq fill-column 110) ) + (setq fill-column my-fill-column) ) )) '(c-mode-hook lisp-mode-hook))