On Tue, 26 Apr 2005 16:35:42 -0700 (PDT) exits funnel wrote:

> I want this:
>
> (equal system-type "gnu/linux")
>
> to evaluate to true but instead it evaluates to nil.
> C-h v system-type indicates its value is "gnu/linux".

`system-type' is a symbol not a string.

(equal system-type 'gnu/linux)

evals to t here.

David
_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to