From: Richard M. Stallman Date: Tue, 22 Aug 1995 20:55:36 +0000 (+0000) Subject: (2C-mode): Use make-local-hook and add-hook. X-Git-Tag: emacs-19.34~2926 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5181be3a8833ff9137f4414e9c4bbe88d482e179;p=emacs.git (2C-mode): Use make-local-hook and add-hook. --- diff --git a/lisp/textmodes/two-column.el b/lisp/textmodes/two-column.el index 915661486ee..9b27b5ee37c 100644 --- a/lisp/textmodes/two-column.el +++ b/lisp/textmodes/two-column.el @@ -302,10 +302,10 @@ These keybindings can be customized in your ~/.emacs by `2C-mode-map', The appearance of the screen can be customized by the variables `2C-window-width', `2C-beyond-fill-column', `2C-mode-line-format' and `truncate-partial-width-windows'." - (make-variable-buffer-local 'post-command-hook) + (make-local-hook 'post-command-hook) + (add-hook 'post-command-hook '2C-autoscroll nil t) (setq fill-column (- 2C-window-width 2C-beyond-fill-column) - post-command-hook '2C-autoscroll mode-line-format 2C-mode-line-format 2C-mode other) (run-hooks '2C-mode-hook))