Sams Teach Yourself Emacs in 24 Hours

ContentsIndex

Appendix A: Installing Functions and Packages from the CD

Previous HourNext Chapter

Sections in this Hour:

 

cust-stub.el

Packages that require custom.el do not work with Emacs versions prior to 20.x. cust-stub.el is an emulation package for custom.el, and you can find it in Noah Friedman's /opt/share/emacs-lisp/users/noah/cust-stub.el directory.

To use it instead of custom.el, add the following setup to your Emacs:


(eval-and-compile 
(if (< emacs-major-version 20) 
(require 'cust-setup))) 

Sams Teach Yourself Emacs in 24 Hours

ContentsIndex

Appendix A: Installing Functions and Packages from the CD

Previous HourNext Chapter

Sections in this Hour: