First, you must install it (I just made sure you understood this part correctly):
(defun my-change-log-mode-hook () (setq fill-column 120)) (add-hook 'change-log-mode-hook 'my-change-log-mode-hook)
Secondly, you need to make sure that there is no local directory variable parameter that overrides this. For example, when editing Emacs source code, fill-column will be set to 74 for change log mode and 70 elsewhere, overriding the value you specified in the μour hook. They are defined in files named .dir-locals.el and may be located in or above the directory that contains the edited file.
source share