I\'m trying to check if server-running-p is available in my .emacs file before calling it. I already have the following:
server-running-p
(if (not (server-runnin
boundp checks to see if a variable is bound. Since server-running-p is a function you'll want to use fboundp. Like so:
boundp
fboundp
(if (and (fboundp 'server-running-p) (not (server-running-p))) (server-start))