On 2008-01-04, Tyler Smith <tyler.smith at mail.mcgill.ca> wrote: > > (defun my-ess-mode-hook () > (local-set-key [up] 'comint-previous-input) > (local-set-key [down] 'comint-previous-input)) > Looking at Chuck's answer, mine should probably have been: (add-hook 'inferior-ess-mode-hook 'my-ess-mode-hook) Tyler