Richard> 125 rassoc is new Richard> (setq temp-ess-dialect (cdr (rassoc ess-dialect Richard> ess-customize-alist)))) Richard> rassoc is part of cl.el and is not automatically part of Richard> emacs 19.28. As an expedient I just (require 'cl). Richard> emacs 19.29 seems to be happy with rassoc 1. ess-site.el line 50 ;;; temporary until essd-sas is fully integrated (load-file "/home/a023/rmh/ESS-4.9-b16/extras.el") (load-file "/home/a023/rmh/ESS-4.9-b16/easymenu.el") (require 'cl) ; emacs 19.28 doesn't automatically have rassoc ;;; temporary until essd-sas is fully integrated 2. Makefile PRELOADS = -l extras.el -l ./ess-comp.el SOURCES = easymenu.el extras.el \ 3. where extras.el is the add-to-list function from somewhere in 'cl (defun add-to-list (list-var element) "Add to the value of LIST-VAR the element ELEMENT if it isn't there yet. If you want to use `add-to-list' on a variable that is not defined until a certain package is loaded, you should put the call to `add-to-list' into a hook function that will be run only after loading the package. `eval-after-load' provides one way to do this. In some cases other hooks, such as major mode hooks, can do the job." (or (member element (symbol-value list-var)) (set list-var (cons element (symbol-value list-var))))) 4. where easymenu.el is copied from 19.29 5. ess.el comment out line 127 ;;;(require 'font-lock) ;;; doesn't work with emacs 19.28