Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e23390fa
Commit
e23390fa
authored
Apr 27, 2004
by
Jesper Harder
Browse files
lisp -> Lisp.
parent
5242942f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
13 deletions
+17
-13
man/ChangeLog
man/ChangeLog
+4
-0
man/autotype.texi
man/autotype.texi
+4
-4
man/dired-x.texi
man/dired-x.texi
+5
-5
man/faq.texi
man/faq.texi
+1
-1
man/viper.texi
man/viper.texi
+3
-3
No files found.
man/ChangeLog
View file @
e23390fa
2004-04-27 Jesper Harder <harder@ifa.au.dk>
* faq.texi, viper.texi, dired-x.texi, autotype.texi: lisp -> Lisp.
2004-04-23 Juanma Barranquero <lektu@terra.es>
* makefile.w32-in: Add "-*- makefile -*-" mode tag.
...
...
man/autotype.texi
View file @
e23390fa
...
...
@@ -196,7 +196,7 @@ define an abbreviation (@pxref{(emacs)Defining Abbrevs}) that will expand
Say you want @samp
{
ifst
}
to be an abbreviation for the C language if
statement. You will tell Emacs that @samp
{
ifst
}
expands to the empty string
and then calls the skeleton command. In Emacs
-l
isp you can say something like
and then calls the skeleton command. In Emacs
L
isp you can say something like
@code
{
(define-abbrev c-mode-abbrev-table "ifst" "" 'c-if)
}
. Or you can edit
the output from @kbd
{
M-x list-abbrevs
}
to make it look like this:
...
...
@@ -263,7 +263,7 @@ copy of this variable.
@item @code
{
v1
}
, @code
{
v2
}
Skeleton-local user variables.
@item @code
{
'@var
{
expression
}}
Evaluate following
l
isp expression for its side-effect, but prevent it from
Evaluate following
L
isp expression for its side-effect, but prevent it from
being interpreted as a skeleton element.
@item @var
{
skeleton
}
Subskeletons are inserted recursively, not once, but as often as the user
...
...
@@ -605,9 +605,9 @@ formatting or define special points of interest in the inserted text.
@kbd
{
M-x tempo-backward-mark
}
and @kbd
{
M-x tempo-forward-mark
}
can be
used to jump between such points.
More flexible templates can be created by including
l
isp symbols, which
More flexible templates can be created by including
L
isp symbols, which
will be evaluated as variables, or lists, which will be evaluated
as
l
isp expressions. Automatic completion of specified tags to expanded
as
L
isp expressions. Automatic completion of specified tags to expanded
templates can be provided.
@findex tempo-define-template
...
...
man/dired-x.texi
View file @
e23390fa
...
...
@@ -696,7 +696,7 @@ Each element of the alist looks like
@end example
@noindent
where each @var
{
command
}
can either be a string or a
l
isp expression
where each @var
{
command
}
can either be a string or a
L
isp expression
that evaluates to a string. If several commands are given, all of
them will temporarily be pushed onto the history.
...
...
@@ -927,11 +927,11 @@ List of extensions of dispensable files created by Bib@TeX{}.
@kindex M
-(
@findex dired
-
mark
-
sexp
@cindex Lisp expression, marking files with in Dired
@cindex Mark file by
l
isp expression
@cindex Mark file by
L
isp expression
(
@code
{
dired
-
mark
-
sexp
}
)
Mark files for which @var
{
predicate
}
returns
non
-
@code
{
nil
}
. With a prefix argument, unflag those files instead.
The @var
{
predicate
}
is a
l
isp expression that can refer to the following
The @var
{
predicate
}
is a
L
isp expression that can refer to the following
symbols:
@table @code
@item inode
...
...
@@ -965,7 +965,7 @@ For example, use
@end example
to mark all zero length files.
To find out all not yet compiled Emacs
l
isp files in a directory, Dired
To find out all not yet compiled Emacs
L
isp files in a directory, Dired
all @file
{
.el
}
files in the lisp directory using the wildcard
@samp
{
*
.el
}
. Then use @kbd
{
M
-(
}
with
@example
...
...
@@ -998,7 +998,7 @@ directory in special major modes:
Default: @code
{
((
dired
-
mode .
(
dired
-
current
-
directory
)))
}
Alist of major modes and their notion of @code
{
default
-
directory
}
, as a
l
isp expression to evaluate. A resulting value of @code
{
nil
}
is ignored
L
isp expression to evaluate. A resulting value of @code
{
nil
}
is ignored
in favor of @code
{
default
-
directory
}
.
@item default
-
directory
...
...
man/faq.texi
View file @
e23390fa
...
...
@@ -3542,7 +3542,7 @@ see @ref{Packages that do not come with Emacs}.
@uref{http://www.anc.ed.ac.uk/~stephen/emacs/ell.html, The Emacs Lisp
List (ELL)}, maintained by @email{stephen@@anc.ed.ac.uk, Stephen Eglen},
aims to provide one compact list with links to all of the current Emacs
l
isp files on the internet. The ELL can be browsed over the web, or
L
isp files on the internet. The ELL can be browsed over the web, or
from Emacs with @uref{http://www.anc.ed.ac.uk/~stephen/emacs/ell.el,
the @file{ell} package}.
...
...
man/viper.texi
View file @
e23390fa
...
...
@@ -314,8 +314,8 @@ x}. Viper uses @key{ESC} to switch from Insert state to Vi state. Therefore
Viper defines @kbd{C-\} as its Meta key in Vi state. @xref{Vi State}, for
more info.@refill
Emacs is structured as a
l
isp interpreter around a C core. Emacs keys
cause
l
isp functions to be called. It is possible to call these
Emacs is structured as a
L
isp interpreter around a C core. Emacs keys
cause
L
isp functions to be called. It is possible to call these
functions directly, by typing @kbd{M-x function-name}.
@node Loading Viper, States in Viper, Emacs Preliminaries, Overview
...
...
@@ -2066,7 +2066,7 @@ To customize the binding for @kbd{C-h} in Insert state:
@
end
example
@
noindent
Each
Emacs
command
key
calls
some
l
isp
function
.
If
you
have
enabled
the
Each
Emacs
command
key
calls
some
L
isp
function
.
If
you
have
enabled
the
Help
,
(@
pxref
{
Rudimentary
Changes
})
@
kbd
{
C
-
h
k
}
will
show
you
the
function
for
each
specific
key
;
@
kbd
{
C
-
h
b
}
will
show
all
bindings
,
and
@
kbd
{
C
-
h
m
}
will
provide
information
on
the
major
mode
in
effect
.
If
Help
is
not
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment