help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: alternative to (require ...)


From: Jason Rumney
Subject: Re: alternative to (require ...)
Date: 24 Feb 2004 21:12:58 +0000
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50

Sam Halliday <devnull@example.com> writes:

>   (require 'htmlize)
> 
> is there an alternative command i can use, which doesn't result in
> emacs crying if it can't find the package?

I use:

(if (require 'htmlize nil t)
    (progn
        ;; htmlize specific settings here
     ))


Or if there are no htmlize specific settings, just

(require 'htmlize nil t)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]