aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-08-16 14:39:52 -0700
committerLars Ingebrigtsen2019-08-16 14:39:52 -0700
commite90c2176ea70006f8ab84f5ee3d0315173e96222 (patch)
tree045d63b2d00459dbaf380e442df0b23f5abb2543
parent496bab789d55ff20f150dd7a7d1d9bb837fb4534 (diff)
downloademacs-e90c2176ea70006f8ab84f5ee3d0315173e96222.tar.gz
emacs-e90c2176ea70006f8ab84f5ee3d0315173e96222.zip
Add missing skeleton entries in autotype.texi
* doc/misc/autotype.texi: Add missing entries found in the doc string to `skeleton-insert' (bug#12563).
-rw-r--r--doc/misc/autotype.texi12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/misc/autotype.texi b/doc/misc/autotype.texi
index 5eb45e28343..96262fcb530 100644
--- a/doc/misc/autotype.texi
+++ b/doc/misc/autotype.texi
@@ -240,7 +240,11 @@ alignment. Use @code{"\n"} as the first or last string element of a
240skeleton to insert a newline unconditionally. 240skeleton to insert a newline unconditionally.
241@item @code{_} 241@item @code{_}
242Interesting point. When wrapping skeletons around successive regions, they are 242Interesting point. When wrapping skeletons around successive regions, they are
243put at these places. Point is left at first @code{_} where nothing is wrapped. 243put at these places. Point is left at first @code{_} where nothing is
244wrapped.
245@item @code{-}
246Interesting point with no inter-region interaction; overrides
247interesting point set by @code{_}.
244@item @code{>} 248@item @code{>}
245Indent line according to major mode. When following element is @code{_}, and 249Indent line according to major mode. When following element is @code{_}, and
246there is an interregion that will be wrapped here, indent that interregion. 250there is an interregion that will be wrapped here, indent that interregion.
@@ -250,6 +254,8 @@ something, do following element.
250@item @code{|} 254@item @code{|}
251Logical xor. If preceding element didn't move point, i.e., usually inserted 255Logical xor. If preceding element didn't move point, i.e., usually inserted
252nothing, do following element. 256nothing, do following element.
257@item @code{@@}
258Add position to @code{skeleton-positions}.
253@item @code{-@var{number}} 259@item @code{-@var{number}}
254Delete preceding number characters. Depends on value of 260Delete preceding number characters. Depends on value of
255@code{skeleton-untabify}. 261@code{skeleton-untabify}.
@@ -275,6 +281,10 @@ prompt is a lisp-expression that returns successive list-elements.
275@item @code{resume:} 281@item @code{resume:}
276Ignored. Execution resumes here if the user quits during skeleton 282Ignored. Execution resumes here if the user quits during skeleton
277interpretation. 283interpretation.
284@item @code{help}
285Help form during interaction with the user or @code{nil}.
286@item @code{input}
287Initial input (a string or a cons with index) while reading the input.
278@item @code{quit} 288@item @code{quit}
279A constant which is non-@code{nil} when the @code{resume:} section was entered 289A constant which is non-@code{nil} when the @code{resume:} section was entered
280because the user quit. 290because the user quit.