(defun my-elisp-mode () "Same as standard gnu Elisp mode, but with adjusted line spacing. See comment in .emacs for why line-spacing is not set globally. Also some other mods, such as value of emacs-lisp-docstring-fill-column, and removal of local bindings that hide much more frequently used global bindings." (interactive) (emacs-lisp-mode) (setq mode-name "my-elisp") ; (set-line-spacing) ; Turned off for now. See comments in .emacs. (setq emacs-lisp-docstring-fill-column 79) ; Unbind these annoyances that hide bindings to heavily global functions ; with bindings to much less frequently used lisp-mode functinos (local-unset-key "") (local-unset-key "") (local-unset-key "x") (local-unset-key "x") )