4
votes
Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path
(let ((base "~/Projects/emacs"))
(add-to-list 'load-path base)
(dolist (f (directory-files base))
(let ((name (concat base "/" f)))
(when (and (file-directory-p name)
…
3
votes
Why are fixnums in emacs only 29 bits?
Others have commented on why fixnums are only 29 bits wide. But if you want a programmer's calculator, check out calc. It of …
1
vote
How do I pass a function as a parameter to in elisp?
The note at the end of this page says that you can quote functions with #' instead of …
2
votes
determining the line terminator in emacs
If it says (DOS) on the modeline when you open the file on Unix, the line endings are Windows-style. If it says (Unix) when you open the file on Windows, the line endings are Unix-style.
Fr …
0
votes
breaking a running emacs lisp program
I suppose JDEE is somehow inhibiting debug-on-error. Perhaps grep through its files for the error message "Args out of range". While debugging, make sure to load the uncompiled .el fil …
3
votes
emacs working with big xml files
I don't think there is a single "right way", but here are some ideas:
make your Java app present the XML document as a bunch of threaded articles in groups; have it speak …
0
votes
Can I use ido-completing-read instead of completing-read everywhere?
Just a thought: have you tried editing ido-completing-read to call original-completing-read instead of completing-read, defining original-completing-rea …
1
vote
Is there any way to create a “project file” in emacs?
There's eproject, but it seems to be very sparsely documented.
…
0
votes
How to center a string in elisp?
There's a center-line, which works in a buffer (and uses the buffer's value of fill-column as the line length), so if your goal is to produce a nicely formatted file, you …
