GNU Emacs is easily extended with Emacs Lisp. In some cases you may hit a performance wall even after byte compiling. In this situation it would be useful to be able to write C functions that you could call from Emacs Lisp code. Is this possible? How do you do it? Is there example code?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Is this (Writing Emacs Primitives) what you are looking for? |
|||
|
|
|
There is no interface to do this, and unless you were aiming to do something like image/video processing in emacs, I see no way it could be useful. C does not automatically make things faster unless you can bypass expensive data structures and work on the data in its representation. If your C code had to work with elisp data structures, it would not be significantly faster than elisp, and it would probably be slower than elisp if anybody ever bothered to make the elisp environment highly-optimizing... |
|||||||
|