Here is an updated finder.el patch, which includes the bug fixes mentioned previously. This patch adds two minor features: * It uses a new syntax table, which inherits from emacs-lisp-mode-syntax-table. It does not consider `;' to be comment syntax (so you don't get highlighting of half of a Commentary sentence that contains `;'). * It font-lock highlights text between quotes: `...', as in Emacs-Lisp doc strings. Without these enhancements, finder uses Emacs-Lisp mode syntax, but with the `;;' line prefix removed, which doesn't make much sense. With these changes, a Commentary becomes quite readable. > From: Drew Adams Sent: Wednesday, March 12, 2008 11:15 AM > This patch fixes two bugs in finder-exit: > > - It treats buffer *Finder-package* also. > This buffer is used by `finder-commentary'. > > - Instead trying to avoid `delete-window' for > `one-window-p', it wraps it in `condition-case'. >