From ed6ef2a480260d5407ccb5619a6b5895c2dc577f Mon Sep 17 00:00:00 2001 From: Miguel de Benito Date: Wed, 19 Sep 2012 15:06:26 +0000 Subject: [PATCH] Typos --- devel/scheme/overview/overview-lazyness.en.tm | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/devel/scheme/overview/overview-lazyness.en.tm b/devel/scheme/overview/overview-lazyness.en.tm index ad26c60..4493f39 100644 --- a/devel/scheme/overview/overview-lazyness.en.tm +++ b/devel/scheme/overview/overview-lazyness.en.tm @@ -1,22 +1,22 @@ - + <\body> - As explaned above, each file inside or one of its + As explaned above, each file inside or one of its plug-ins corresponds to a module>. The individual modules are usually grouped together into an internal or external module, which corresponds to a directory on your hard disk. Any module should start with an instruction of the form - <\scheme-fragment> + <\scm-code> (texmacs-module \ \ (:use ... )) - + The > of the module is a list which corresponds to the location of the corresponding file. More precisely, searches for @@ -41,11 +41,11 @@ . Currently, because of implementation details for the , as soon as a symbol is declared to be public, it becomes visible inside all other - modules. However, you should not rely on this: in the future, it explicit + modules. However, you should not rely on this: in the future, explicit importation with might becomenecessary. Because the number of modules and plug-ins keeps on growing, it - is unefficient to load all modules when booting. Instead, initialization + is inefficient to load all modules when booting. Instead, initialization files are assumed to declare the provided functionality in a way, so that the corresponding modules will only be loaded when the functionality is explictly needed. Some modules may also be loaded during @@ -55,18 +55,18 @@ inside the module . Then your initialization file would typically contain a line - <\scheme-fragment> + <\scm-code> (lazy-define (foo-edit) foo-action) - + Similarly, lazy keyboard shortcuts and menus for might be defined using - <\scheme-fragment> + <\scm-code> (lazy-keyboard (foo-kbd) in-foo-mode?) (lazy-menu (foo-menu) foo-menu) - + For more concrete examples, we recommend the user to take a look at the standard initialization file |$TEXMACS_PATH/progs/init-texmacs.scm>. @@ -94,13 +94,13 @@ precedence in math mode. Alternatively, you may redefine the keyboard shortcut using - <\scheme-fragment> + <\scm-code> (kbd-map \ \ (:mode prevail?) \ \ ("x x x" )) - + This redefinition will prevail both in general and in math mode.