Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this list:

("x" "y" "z")

How do I extract an element from the list? (In this case I'm interested in the first element in the list, but I'm looking for a general solution.)

share|improve this question

1 Answer

You really should read an intro to elisp or something before you try to use it. The Elisp manual which comes with Emacs in some distributions is quite good.

(nth 0 mylist)

http://www.gnu.org/software/emacs/elisp/html_node/List-Elements.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.