aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2014-06-21 11:01:52 +0300
committerEli Zaretskii2014-06-21 11:01:52 +0300
commit900f9384095f8e968e6149e72568e0547dc0d587 (patch)
tree72770280c4bee6f08c6f53037e80037141e9b1fd
parentd895e63e96baf3f5ae1fdb32dafc65f0031bd610 (diff)
downloademacs-900f9384095f8e968e6149e72568e0547dc0d587.tar.gz
emacs-900f9384095f8e968e6149e72568e0547dc0d587.zip
lisp/skeleton.el (skeleton-insert): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/skeleton.el5
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 46e3b0f6321..b693e077f76 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-06-21 Eli Zaretskii <eliz@gnu.org>
2
3 * skeleton.el (skeleton-insert): Doc fix.
4
12014-06-20 Stefan Monnier <monnier@iro.umontreal.ca> 52014-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * emacs-lisp/smie.el (smie-config--guess): Fix typo. 7 * emacs-lisp/smie.el (smie-config--guess): Fix typo.
diff --git a/lisp/skeleton.el b/lisp/skeleton.el
index 21f00d16c82..027b2dd9d62 100644
--- a/lisp/skeleton.el
+++ b/lisp/skeleton.el
@@ -200,7 +200,7 @@ not needed, a prompt-string or an expression for complex read functions.
200If ELEMENT is a string or a character it gets inserted (see also 200If ELEMENT is a string or a character it gets inserted (see also
201`skeleton-transformation-function'). Other possibilities are: 201`skeleton-transformation-function'). Other possibilities are:
202 202
203 \\n go to next line and indent according to mode 203 \\n if not at eol, go to next line and indent according to mode
204 _ interesting point, interregion here 204 _ interesting point, interregion here
205 - interesting point, no interregion interaction, overrides 205 - interesting point, no interregion interaction, overrides
206 interesting point set by _ 206 interesting point set by _
@@ -215,6 +215,9 @@ If ELEMENT is a string or a character it gets inserted (see also
215After termination, point will be positioned at the last occurrence of - 215After termination, point will be positioned at the last occurrence of -
216or at the first occurrence of _ or at the end of the inserted text. 216or at the first occurrence of _ or at the end of the inserted text.
217 217
218Note that \\n only inserts a newline if not at eol. If you want to insert
219a newline unconditionally, use \"\\n\" instead.
220
218Further elements can be defined via `skeleton-further-elements'. 221Further elements can be defined via `skeleton-further-elements'.
219ELEMENT may itself be a SKELETON with an INTERACTOR. The user is prompted 222ELEMENT may itself be a SKELETON with an INTERACTOR. The user is prompted
220repeatedly for different inputs. The SKELETON is processed as often as 223repeatedly for different inputs. The SKELETON is processed as often as