summaryrefslogtreecommitdiff
path: root/doc/parens.texi
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2011-01-10 15:32:30 +0100
committerJose Antonio Ortega Ruiz <jao@gnu.org>2011-01-10 15:32:30 +0100
commite4dfef77b0f61447978aeaf58d61953f5cf1f3e9 (patch)
tree49b046284bfcbc8845461be957bc1bf0cbac8837 /doc/parens.texi
parent65e9f9b1d0398eaaa08a8488cb0bf35eb0ffb88b (diff)
downloadgeiser-e4dfef77b0f61447978aeaf58d61953f5cf1f3e9.tar.gz
geiser-e4dfef77b0f61447978aeaf58d61953f5cf1f3e9.tar.bz2
Manual: whitespace and missing @noindent
Thanks, once again, to Mark Harig.
Diffstat (limited to 'doc/parens.texi')
-rw-r--r--doc/parens.texi7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/parens.texi b/doc/parens.texi
index b72e03f..89b60a1 100644
--- a/doc/parens.texi
+++ b/doc/parens.texi
@@ -103,6 +103,7 @@ subsection}.
@cindex scheme implementation, choosing
To determine what Scheme implementation corresponds to a given source
file, Geiser uses the following algorithm:
+
@enumerate
@item
If the file-local variable @code{geiser-scheme-implementation} is
@@ -137,6 +138,7 @@ See? That's the problem of being a smart aleck: one's always outsmarted
by people around. At this point, @i{geiser-mode} will humbly give up and
ask you to explicitly choose the Scheme implementation.
@end enumerate
+
As you can see in the list above, there are several ways to influence
Geiser's guessing by mean customizable variables. The most direct (and
most impoverishing) is probably limiting the active implementations to a
@@ -150,7 +152,8 @@ default value for the latter variable:
((regexp "\\.rkt$") racket))
@end example
-@noindent which describes the simple heuristic that files with @file{.scm} as
+@noindent
+which describes the simple heuristic that files with @file{.scm} as
extension are by default associated to a Guile REPL while those ending
in @file{.ss} or @file{.rkt} correspond to Racket's implementation (with
the caveat that these rules are applied only if the previous heuristics
@@ -286,7 +289,7 @@ madness).
You can change the way Geiser displays the module/identifier combo by
customizing @code{geiser-autodoc-identifier-format}. For example, if you
wanted a tilde surrounded by spaces instead of a colon as a separator,
-you would write something like
+you would write something like:
@example
(setq geiser-autodoc-identifier-format "%s ~ %s")