Search Results

1
vote

Getting Emacs fill-paragraph to play nice with javadoc-like comments

There's other modes that have less complex functions used for fill-paragraph-function. Browsing through my install, it looks like the ones in ada-mode and make-mode are good examples. …
4
votes

How do I do closures in Emacs lisp?

Emacs lisp only has dynamic scoping. There's a lexical-let macro that approximates lexical scoping through a rather terrible hack. …