We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cond ((locate-library "bbdb") ...)
(when (require 'bbdb nil 'noerror) ...)
practical.org.el/practical.org.el
Lines 303 to 304 in da0da2a
You could consider rewriting this as
(when (require 'bbdb nil 'noerror)
If bbdb can't be loaded, this returns nil, but if it can (or if bbdb is alreayd loaded), this return bbdb and the rest of the code will be executed.
bbdb
nil
The text was updated successfully, but these errors were encountered:
No branches or pull requests
practical.org.el/practical.org.el
Lines 303 to 304 in da0da2a
You could consider rewriting this as
If
bbdb
can't be loaded, this returnsnil
, but if it can (or ifbbdb
is alreayd loaded), this returnbbdb
and the rest of the code will be executed.The text was updated successfully, but these errors were encountered: