version 0.93
[sepia.git] / sepia.texi
blob5fe17817d99f6b04195e449c9beb09e368c0cb65
1 \input texinfo   @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename sepia.info
4 @settitle SEPIA: Simple Emacs Perl Integration
5 @dircategory Emacs
6 @direntry
7 * Sepia: (sepia).    Simple Emacs Perl Integration.
8 @end direntry
9 @c %**end of header
11 @titlepage
12 @title Sepia: Simple Emacs Perl Integration
13 @author Sean O'Rourke
14 @end titlepage
16 @macro kbinding{key,cmd}
17 @item \key\ `\cmd\'
18 @kindex \key\
19 @end macro
21 @macro fitem{name}
22 @item \name\
23 @findex \name\
24 @end macro
26 @macro xxx{stuff}
27 @b{XXX: \stuff\}
28 @end macro
30 @node Top, Introduction, (dir), (dir)
32 @ifinfo
33 @top SEPIA
34 @end ifinfo
36 @ifhtml
37 @image{Sepia,,,,jpg}
38 @end ifhtml
40 Sepia is a set of Perl development tools for Emacs supporting code
41 navigation and interactive evaluation.
43 @menu
44 * Introduction::                
45 * Editing::                     
46 * Interactive Perl::            
47 * Customization::               
48 * Internals::                   
49 * Credits::                     
50 * Function Index::              
51 @end menu
53 @c ============================================================
54 @node Introduction, Editing, Top, Top
55 @chapter Introduction
57 Sepia is a set of tools for Perl development in Emacs.  Its goal is to
58 extend CPerl mode to support fast code navigation and interactive
59 development.  It is inspired by Emacs' current support for a number of
60 other languages, including Lisp, Python, and Emacs Lisp.
62 @menu
63 * Getting Started::             
64 * Philosophy::                  
65 @end menu
67 @node Getting Started, Philosophy, Introduction, Introduction
68 @section Getting Started
70 To install Sepia, its Emacs Lisp files must be in Emacs'
71 @code{load-path}, and the @file{lib} directory must be in Perl's
72 @code{@@INC}.  Assuming that Sepia has been unpacked in
73 @file{~/sepia}, it can be installed by adding the following lines to
74 @file{~/.emacs}:
76 @example
77 (add-to-list 'load-path "~/sepia")
78 (setq sepia-perl5lib (list (expand-file-name "~/sepia/lib")))
79 (defalias 'perl-mode 'sepia-mode)
80 (require 'sepia)
81 @end example
83 Then to bring up the interactive Perl prompt, type @kbd{M-x sepia-repl}.
85 @node Philosophy,  , Getting Started, Introduction
86 @section Philosophy
88 A development environment should support three activities: code
89 spelunking, interaction, and customization.  Emacs as an environment for
90 developing Emacs Lisp thoroughly supports all of them: It has commands
91 to visit individual functions' code and documentation, commands to
92 evaluate or step through expressions, and an architecture that
93 encourages customization in Emacs Lisp.  As an environment for Perl,
94 however, it is lacking: there is limited interactivity with the Perl
95 debugger, and reasonable documentation browsing, but no support for
96 navigating, editing, and re-evaluating code.  Sepia attempts to remedy
97 the situation.
99 Modern IDEs also support these three activities, but do so awkwardly.
100 Rather than having functions to visit definitions (@kbd{find-function})
101 and search for functions (@kbd{apropos}), they clutter the screen with
102 class and file trees.  Rather than supporting interactive evaluation of
103 small pieces of code, they perform background semantic checking on whole
104 projects and highlight errors.  Rather than allowing minor
105 customizations to grow organically into features, they support limited
106 configuration files and baroque plug-in APIs.  Sepia tries to adhere to
107 the apparent Emacs philosophy that rich semantic information should be
108 unobtrusive, and that the best way to build working code is to start
109 by experimenting with small pieces.
111 Language support packages for Emacs vary widely in the degree to which
112 they make use of or replace existing Emacs features.  Minimal modes
113 provide keyword-based syntax highlighting and an unadorned comint buffer
114 as an interpreter.  Others provide their own specialized equivalents of
115 comint, eldoc, completion, and other Emacs features.  Sepia takes a
116 third approach by trying to do as much as possible with existing Emacs
117 features, even when they are not optimal for Perl.  For example, it uses
118 comint to communicate with the subprocess, eldoc to display
119 documentation, and grep to list source locations.
121 This approach has three advantages: First, it maximizes the number of
122 features that can be supported with limited development time.  Second,
123 it respects users' settings.  A seasoned Emacs user may have changed
124 hundreds of settings, so a mode that reimplements features will have to
125 support equivalent settings, and will force the user to re-specify them.
126 Finally, this approach respects decades of development spent, as Neal
127 Stephenson put it, ``focused with maniacal intensity on the deceptively
128 simple-seeming problem of editing text.''  Many non-obvious choices go
129 into making a polished interface, and while a reimplementation gets rid
130 of accumulated cruft, it must rediscover these hidden trade-offs.
132 Anyways, I hope you enjoy using Sepia.  Its development style is strange
133 for someone used Perl's typical mix of one-liners and edit-save-run, but
134 once you are accustomed to it, you may find it very effective.
136 @c ============================================================
137 @node Editing, Interactive Perl, Introduction, Top
138 @chapter Editing
139 @findex sepia-mode
141 Sepia's first contribution is a set of commands to explore a Perl
142 codebase.  These include commands to browse and display documentation,
143 to find function definitions, and to query a cross-reference database of
144 function and variable uses.  Sepia also provides intelligent symbol
145 completion.
147 @menu
148 * Completion::                  
149 * Navigation::                  
150 * Documentation::               
151 @end menu
153 @node Completion, Navigation, Editing, Editing
154 @section Completion
156 Sepia implements partial-word completion that communicates with the
157 inferior Perl process.  For example, @samp{%S:X:v_u} completes to
158 @samp{%Sepia::Xref::var_use} when Sepia is loaded.  This completion only
159 operates on functions and global variables known to the Perl
160 interpreter, so it works best when code and interpreter are in sync.
162 More precisely, completion examines the text before point and tries each
163 of the following in turn, using the first successful approach:
165 @enumerate
166 @item
167 If the text looks like a method call (e.g. @samp{$object->f} or
168 @samp{Class->f}), complete on methods.
170 @item
171 If it looks like a variable (e.g. @samp{%hash} or @samp{$scalar}),
172 complete on variables.
174 @item
175 Complete on modules and functions.
177 @item
178 Otherwise, complete on Perl built-in operators.
179 @end enumerate
181 For each of the first three cases, completions candidates are first
182 generated by splitting the text on characters @code{[:_]} and matching
183 the resulting word parts.  For example, @samp{X:a_b} will complete to
184 all symbols matching @samp{^X[^:]*:+a[^:_]*_b} such as @samp{Xref::a_bug}
185 and @samp{X::always_bites_me}.  If no matches result, the text is
186 treated as an acronym.  For example, @samp{dry} will complete to
187 @samp{dont_repeat_yourself}.
189 Completion is performed by the following commands:
190 @table @kbd
191 @item M-x sepia-complete-symbol
192 @findex sepia-complete-symbol
193 Complete the symbol before point as described above.  Note that this
194 does not consider lexical scope, and is always case-sensitive,
195 independent of @code{completion-ignore-case}.
197 @item TAB
198 @itemx M-x sepia-indent-or-complete
199 @findex sepia-indent-or-complete
200 First try to reindent the current line.  If its indentation does not
201 change, then try to expand an abbrev at point (unless
202 @code{sepia-indent-expand-abbrev} is @code{nil}).  If no abbrev is
203 expanded, then call @code{sepia-complete-symbol}.
205 @end table
207 @node Navigation, Documentation, Completion, Editing
208 @section Navigation
210 Sepia provides several commands for navigating program source.  All of
211 them rely on information from the inferior Perl process, so it is
212 important both that it be running, and that its internal representation
213 of the program match the program source.  The commands marked (Xref)
214 below also rely on a cross-reference database, which must be explicitly
215 rebuilt by calling @code{xref-rebuild} when the program changes.
217 There are two basic kinds of navigation commands.  The first kind jumps
218 directly to the first matching location when possible, prompting only if
219 no such location is found.  These commands find only a single location.
221 @c direct-jump commands
222 @table @kbd
224 @item M-. M-.
225 @itemx M-x sepia-dwim
226 @findex sepia-dwim
227 Guess what kind of identifier is at point, and try to do the right
228 thing: for a function, find its definition(s); for a variable, find its
229 uses; for a module, view its documentation; otherwise, prompt for the
230 name of a function to visit.  @code{sepia-dwim} automatically goes to
231 the first function definition or variable use found.
233 @item M-. l
234 @itemx M-x sepia-location
235 @findex sepia-location
236 Jump directly to the definition of the function at point, prompting if
237 point is not on a known function.  If multiple definitions are found,
238 choose one arbitrarily.  This function is similar to @code{sepia-defs},
239 and the two should probably be merged.
241 @item M-. j
242 @itemx M-x sepia-jump-to-symbol
243 @findex sepia-jump-to-symbol
244 Navigate to a function using ``ido'' interactive completion.  Within
245 interactive completion, press @key{:} to descend into a package,
246 @key{DEL} to ascend to a parent package, and @key{RET} to go to the
247 currently-selected function.
249 @end table
251 The second kind of navigation commands always prompts the user -- though
252 usually with a sensible default value -- and finds multiple locations.
253 When called with a prefix argument, these commands present their results
254 in a @code{grep-mode} buffer.  When called @emph{without} a prefix
255 argument, they place all results on the found-location ring and jump
256 directly to the first.  The remaining locations can be cycled through by
257 calls to @code{sepia-next}.
259 @c prompt-and-go commands
260 @table @kbd
261 @item M-. f @var{name} @key{RET}
262 @itemx M-x sepia-defs
263 @findex sepia-defs
264 Find definition(s) of function @var{name}.
266 @item M-. m @var{name} @key{RET}
267 @itemx M-x sepia-module-find @var{name} @key{RET}
268 @findex sepia-module-find
269 Find the source of module @var{name}.
271 @item M-. a @var{regexp} @key{RET}
272 @itemx M-x sepia-apropos @var{regexp} @key{RET}
273 @findex sepia-apropos
274 Find definitions of all functions whose names match @var{regexp}.
276 @item M-. c @var{name} @key{RET}
277 @itemx M-x sepia-callers @var{name} @key{RET}
278 @findex sepia-callers
279 (Xref) Find calls to function @var{name}.
281 @item M-. C @var{name} @key{RET}
282 @itemx M-x sepia-callees @var{name} @key{RET}
283 @findex sepia-callees
284 (Xref) Find the definitions of functions called by @var{name}.
286 @item M-. v @var{name} @key{RET}
287 @itemx M-x sepia-var-uses @var{name} @key{RET}
288 @findex sepia-var-uses
289 (Xref) Find uses of the global variable @var{name}.
291 @item M-. V @var{name} @key{RET}
292 @itemx M-x sepia-var-defs @var{name} @key{RET}
293 @findex sepia-var-defs
294 (Xref) Find definitions of global variable @var{name}.  Since Perl's
295 global variables are not declared, this is rarely useful
297 @c XXX: broken, so don't mention it.
298 @c @item M-. A @var{regexp} @key{RET}
299 @c @itemx M-x sepia-var-apropos
300 @c @findex sepia-var-apropos
301 @c Find definitions of all variables whose names match @var{regexp}.  Since
302 @c this function does not handle lexical variables, and since Perl's global
303 @c variables are not declared, this is rarely useful.
305 @end table
307 Finally, there are several other navigation-related commands that do not
308 fit into either of the above categories.
310 @c other commands
311 @table @kbd
312 @item M-,
313 @itemx M-x sepia-next
314 @findex sepia-next
315 Cycle through the definitions found by the previous @key{M-.} search.
317 @item M-. r
318 @itemx M-x sepia-rebuild
319 @findex sepia-rebuild
320 Rebuild the cross-reference database by walking the op-tree and
321 stashes.
323 @item M-. t
324 @itemx M-x find-tag
325 Execute the @code{find-tag} command typically bound to @key{M-.}.
327 @end table
329 @node Documentation,  , Navigation, Editing
330 @section Documentation
332 Sepia can be used to browse installed modules' documentation, to format
333 and display the current buffer's POD, and to browse the list of modules
334 installed on the system.
336 @table @kbd
337 @item M-. d @var{name} @key{RET}
338 @itemx M-x sepia-perldoc-this
339 @findex sepia-perldoc-this
340 View documentation for module @var{name} or Perl manual page @var{name}.
342 @item C-c C-d
343 @itemx M-x sepia-view-pod
344 @findex sepia-view-pod
345 Format and view the current buffer's documentation.
347 @item sepia-package-list
348 @findex sepia-package-list
349 Browse a tree of installed packages.  This lists only the top-level
350 packages from installed distributions, so if package @code{My::Stuff}
351 also provides @code{My::Stuff::Details}, it will not be displayed.  When
352 Emacs-w3m is available, each module is linked to its documentation.
354 @item sepia-module-list
355 @findex sepia-module-list
356 Browse a tree of both top-level and internal packages, like
357 @code{sepia-package-list}.
359 @end table
361 @findex sepia-install-eldoc
362 Sepia also integrates with eldoc (at least in GNU Emacs >= 22).
363 Documentation for Perl operators and control structures is taken from
364 CPerl mode.  Sepia will also display documentation for user-defined
365 functions if their POD is formatted in the standard way, with functions
366 described in a ``=head2'' or ``=item'' entry.  To load user
367 documentation, visit the relevant file and type @kbd{M-x
368 sepia-doc-update}.
370 If @code{Module::CoreList} is available, Sepia's eldoc function will
371 also display the first version of Perl with which a module was shipped.
372 This is intended to give the programmer a sense of when he is creating
373 external dependencies.
375 @c ============================================================
376 @node Interactive Perl, Customization, Editing, Top
377 @chapter Interactive Perl
379 @findex sepia-repl
380 Sepia's second main contribution is an interactive interface (REPL) to
381 an inferior Perl process.  The interface is based on GUD mode, and
382 inherits many of its bindings; this chapter discusses only the Sepia
383 extensions.  To start or switch to the repl, type @kbd{M-x sepia-repl}.
384 As in Sepia mode, @key{TAB} in the REPL performs partial-word completion
385 with @code{sepia-complete-symbol}.
387 Sepia also provides a number of other ways to evaluate pieces of code in
388 Perl, and commands to process buffer text using the inferior process.
390 @menu
391 * Shortcuts::                   
392 * Debugger::                    
393 * Evaluation::                  
394 * Mutilation::                  
395 * Scratchpad::                  
396 @end menu
398 @node Shortcuts, Debugger, Interactive Perl, Interactive Perl
399 @section Shortcuts
401 ``Shortcuts'' are commands handled specially by the REPL rather than
402 being evaluated as Perl code.  They either communicate with the REPL
403 function, or provide a convenient interface to variables in the Sepia
404 package.  Shortcuts are prefixed by a comma (@key{,}), and may be
405 abbreviated to the shortest unique prefix.
407 @table @kbd
408 @item cd @var{dir}
409 Change Perl's current directory to @var{dir}.
411 @item debug [@var{val}]
412 Turn Sepia debugger hook on or off, or toggle if @var{val} is missing.
414 @item delete
415 Delete the current breakpoint.
417 @item format @var{type}
418 Set the output format to @var{type}, either ``dumper'' (using
419 @code{Data::Dumper}), ``dump'' (@code{Data::Dump}), ``yaml''
420 (@code{YAML}), or ``plain'' (stringification).  Default: ``dumper''.
422 @item help
423 Display a list of shortcuts.
425 @item lsbreak
426 List breakpoints.
428 @item methods @var{name} [@var{regexp}]
429 Display a list of functions defined in package @var{name} and its
430 @code{ISA}-ancestors matching optional pattern @var{regexp}.
432 @item package @var{name}
433 Set the default evaluation package to @var{name}.
435 @item pwd
436 Show the process's current working directory.
438 @item quit
439 Exit the inferior Perl process.
441 @item reload
442 Reload @file{Sepia.pm} and recursively invoke the REPL.  This command is
443 mostly of interest when working on Sepia itself.
445 @item shell [@var{command}]
446 Execute shell command @var{command}, displaying its standard output and
447 standard error.
449 @item strict [@var{val}]
450 Set evaluation strictness to @var{val}, or toggle it if @var{val} is not
451 given.  Note that turning strictness off and on clears the REPL's
452 lexical environment.
454 @item wantarray [@var{val}]
455 Set the evaluation context to @var{val}, or toggle between scalar and
456 array context.
458 @item who [@var{name} [@var{regexp}]]
459 List identifiers in package @var{name} (main by default) matching
460 optional pattern @var{regexp}.
462 @end table
464 @node Debugger, Evaluation, Shortcuts, Interactive Perl
465 @section Debugger
467 Sepia uses Perl's debugger hooks and GUD mode to support conditional
468 breakpoints and single-stepping, and overrides Perl's @code{die()} to
469 invoke the debugger rather than unwind the stack.  This makes it
470 possible to produce a backtrace, inspect and modify global variables,
471 and even continue execution when a program tries to kill itself.  If the
472 PadWalker module is available, Sepia also provides functions to inspect
473 and modify lexical variables.
475 The debugger has its own set of shortcuts, also prefixed by a comma.
477 @table @kbd
478 @item backtrace
479 Show a backtrace.
481 @item break @var{file}:@var{line} [@var{expr}]
482 Set a breakpoint in @var{file} at @var{line}.  If @var{expr} is
483 supplied, stop only if it evaluates to true.
485 @item down @var{n}
486 @itemx up @var{n}
487 Move the current stack frame up or down by @var{n} (or one) frames.
489 @item inspect [@var{n}]
490 Inspect lexicals in the current frame or frame @var{n}, counting upward
491 from 1.
493 @item lsbreak
494 List breakpoints.
496 @item next [@var{n}]
497 Advance @var{n} (or one) lines, skipping subroutine calls.
499 @item quit
500 @itemx die
501 @itemx warn
502 Continue as the program would have executed without debugger
503 intervention, dying if the debugger was called from @code{die()}.
505 @item return @var{expr}
506 Continue execution as if @code{die()} had returned the value of
507 @var{expr}, which is evaluated in the global environment.
509 @item step [@var{n}]
510 Step forward @var{n} (or one) lines, descending into subroutines.
512 @end table
514 @node Evaluation, Mutilation, Debugger, Interactive Perl
515 @section Evaluation
517 When interactive Perl is running, Sepia can evaluate regions of code in
518 the inferior Perl process.  The following commands assume that this
519 process has already been started by calling @code{sepia-repl}.
521 @table @kbd
522 @item C-M-x
523 @itemx M-x sepia-eval-defun
524 @findex sepia-eval-defun
525 Evaluate the function around point in the inferior Perl process.  If it
526 contains errors, jump to the location of the first.
528 @item C-c C-l
529 @itemx M-x sepia-load-file
530 @findex sepia-load-file
531 Save the current buffer, then reload its file and if warnings or errors
532 occur, display an error buffer.  With a prefix argument, also rebuild
533 the cross-reference index.
535 @item C-c e
536 @itemx M-x sepia-eval-expression @key{RET} @var{expr} @key{RET}
537 @findex sepia-eval-expression
538 Evaluate @var{expr} in scalar context and echo the result.  With a
539 prefix argument, evaluate in list context.
541 @item C-c!
542 @itemx sepia-set-cwd
543 Set the REPL's working directory to the current buffer's directory.
545 @end table
547 @node Mutilation, Scratchpad, Evaluation, Interactive Perl
548 @section Mutilation
550 Sepia contains several functions to operate on regions of text using the
551 interactive Perl process.  These functions can be used like standard
552 one-liners (e.g. @samp{perl -pe ...}), with the advantage that all of
553 the functions and variables in the interactive session are available.
555 @table @kbd
556 @item M-x sepia-perl-pe-region @key{RET} @var{code} @key{RET}
557 @findex sepia-perl-pe-region
558 Evaluate @var{code} on each line in the region with @code{$_} bound to
559 the line text, collecting the resulting values of @code{$_}.  With a
560 prefix argument, replace the region with the result.
562 @item M-x sepia-perl-ne-region @key{RET} @var{code} @key{RET}
563 @findex sepia-perl-ne-region
564 Evaluate @var{code} as above, but collect the results instead.
566 @item M-x sepia-perlize-region @key{RET} @var{code} @key{RET}
567 @findex sepia-perlize-region
568 Evaluate @var{code} once with @code{$_} bound to the entire region,
569 collecting the final value of @code{$_}.  With a prefix argument,
570 replace the region.
572 @end table
574 @node Scratchpad,  , Mutilation, Interactive Perl
575 @section Scratchpad
577 @findex sepia-scratch
578 Sepia also supports a scratchpad, another form of interaction inspired
579 by Emacs' @code{*scratch*} buffer.  To create or switch to the
580 scratchpad, type @kbd{M-x sepia-scratch}.  Scratchpad mode is exactly
581 like Sepia mode, except @key{C-j} evaluates the current line and prints
582 the result on the next line.
584 @c ============================================================
585 @node Customization, Internals, Interactive Perl, Top
586 @chapter Customization
588 While Sepia can be customized in both the Perl and Emacs Lisp, most of
589 the user-accessible configuration is in the latter.  The two variables
590 most likely to need customization are @kbd{sepia-program-name} and
591 @kbd{sepia-perl5lib}.  Since Sepia tries where possible to reuse
592 existing Emacs functionality, its behavior should already be covered by
593 existing customizations.
595 @menu
596 * Emacs Variables::             
597 * Perl Variables::              
598 @end menu
600 @node Emacs Variables, Perl Variables, Customization, Customization
601 @section Emacs Variables
603 @table @kbd
605 @item sepia-complete-methods
606 If non-@code{nil}, @code{sepia-complete-symbol} will complete
607 simple method calls of the form @code{$x->} or @code{Module->}.  Since
608 the former requires evaluation of @code{$x}, this can be disabled.
609 Default: @code{T}.
611 @item sepia-eval-defun-include-decls
612 If non-@code{nil}, attempt to generate a declaration list for
613 @code{sepia-eval-defun}.  This is necessary when evaluating some code,
614 such as that calling functions without parentheses, because the presence
615 of declarations affects the parsing of barewords.  Default: @code{T}.
617 @item sepia-indent-expand-abbrev
618 If non-@code{nil}, @code{sepia-indent-or-complete} will, if
619 reindentation does not change the current line, expand an abbreviation
620 before point rather than performing completion.  Only if no abbreviation
621 is found will it perform completion.  Default: @code{T}.
623 @item sepia-module-list-function
624 The function to view a tree of installed modules.  Default:
625 @code{w3m-find-file} if Emacs-w3m is installed, or
626 @code{browse-url-of-buffer} otherwise.
628 @item sepia-perldoc-function
629 The function called to view installed modules' documentation.  Default:
630 @code{w3m-perldoc} if Emacs-w3m is installed, or @code{cperl-perldoc}
631 otherwise.
633 @item sepia-perl5lib
634 A list of directories to include in @code{PERL5LIB} when starting
635 interactive Perl.  Default: @code{nil}.
637 @item sepia-prefix-key
638 The prefix to use for for functions in @code{sepia-keymap}.  Default:
639 @key{M-.}.
641 @item sepia-program-name
642 The Perl program name for interactive Perl.  Default: ``perl''.
644 @item sepia-use-completion
645 If non-@code{nil}, various Sepia functions will generate completion
646 candidates from interactive Perl when called interactively.  This may be
647 slow or undesirable in some situations.  Default: @code{T}.
649 @item sepia-view-pod-function
650 The function called to view the current buffer's documentation.
651 Default: @code{sepia-w3m-view-pod} if Emacs-w3m is available, or
652 @code{sepia-perldoc-buffer} otherwise.
654 @end table
656 @node Perl Variables,  , Emacs Variables, Customization
657 @section Perl Variables
659 The following variables in the Sepia package control various aspects of
660 interactive evaluation.
662 @table @code
664 @item $PACKAGE
665 The package in which user input is evaluated, determined automatically
666 when code is evaluated from a buffer.  Default: @code{main}.
668 @item $PRINTER
669 The function called to format interactive output, normally set with the
670 @code{printer} shortcut.
672 @item $PRINT_PRETTY
673 If true, format some values nicely independent of the value of
674 @code{$PRINTER}.  Currently, this means columnating lists of simple
675 scalars.  Default: true.
677 @item $PS1
678 The trailing end of the prompt string, which should end with ``> ''.
679 Default: @code{"> "}.
681 @item $STOPDIE
682 If true, calls to @code{die} from interactive code will invoke the Sepia
683 debugger.  Default: true.
685 @item $STOPWARN
686 If true, calls to @code{warn} from interactive code will invoke the
687 Sepia debugger.  Default: false.
689 @item $WANTARRAY
690 If true, evaluate interactive expressions in list context.  Default: true.
692 @end table
694 @c ============================================================
695 @node Internals, Credits, Customization, Top
696 @chapter Internals
698 Many things remain unexplained except by the code itself, and some
699 details mentioned above should probably be given less prominence.  For
700 developer documentation, please see the POD for @code{Sepia} and
701 @code{Sepia::Xref}, and the doc-strings in @file{sepia.el}.
703 @node Credits, Function Index, Internals, Top
704 @unnumbered Credits
706 @table @asis
707 @item Hilko Bengen
708 Found and motivated me to fix a bunch of bugs, created Debian packages.
710 @item Ye Wenbin
711 Found and fixed numerous bugs.
713 @item Free Software
714 Portions of the code were lifted from Emacs-w3m, SLIME, ido, and
715 B::Xref, all of which are Free software.
717 @end table
719 @c ============================================================
720 @node Function Index,  , Credits, Top
721 @unnumbered Function Index
722 @printindex fn
724 @bye