vote up 0 vote down star

I sometimes use (number-at-point), (string-at-point), (sexp-at-point) and I had a need for:

(list-at-point)

I want to be able to grab some text like:

a b c d

and use list-at-point to grab it as an elisp list, and then do some processing on it.

But I can't seem to get list-at-point to return anything but nil.

I'm using Emacs on windows, v22.3.1

flag

1 Answer

vote up 2 vote down check

It appears you've found a bug, None of the functions that depend on form-at-point seem to work for me, which the ones that depend on thing-at-point do. Have a look at the file thngatpt.el in the elisp sources.

The function has sufficient hair that I can't debug it at this hour, but it's clearly not doing what it advertises. Googling reveals other complaints.

You might see if replacing it with thingatpt+.el is better.

link|flag
I think you're right, I've filed a bug report. – justinhj Apr 17 at 20:23
yeah, I looked at the code a little bit, but there's enough funcall magic going on it'll require some thought. – Charlie Martin Apr 17 at 20:55
Yeah it is a bug. I reported it and it's been fixed. – justinhj Apr 19 at 18:41

Your Answer

Get an OpenID
or

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