NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
cperl-mode has some functions for this (Score:1)
One nit on your elisp code... the style like this:
<code>
(foo
(bar
baz
)
)
</code>
Looks really weird. All the close parens should be on the same line:
<code>
(foo
(bar
baz))
</code>
This is the "official" emacs lisp standard, and I think most other Lisps like the same sort of formatting.
Reply to This