[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: elisp question
From: |
Drew Adams |
Subject: |
RE: elisp question |
Date: |
Fri, 11 May 2007 16:42:32 -0700 |
> The line I don't think I understand is (and (fboundp 'start-process) 0)
The right mailing list for this is address@hidden
This sexp will return zero if `start-process' is a function and nil
otherwise. That is, if the function definition of symbol `start-process' is
not void, then it returns zero, else nil.