diff options
| author | Eli Zaretskii | 2014-06-21 11:01:52 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2014-06-21 11:01:52 +0300 |
| commit | 900f9384095f8e968e6149e72568e0547dc0d587 (patch) | |
| tree | 72770280c4bee6f08c6f53037e80037141e9b1fd | |
| parent | d895e63e96baf3f5ae1fdb32dafc65f0031bd610 (diff) | |
| download | emacs-900f9384095f8e968e6149e72568e0547dc0d587.tar.gz emacs-900f9384095f8e968e6149e72568e0547dc0d587.zip | |
lisp/skeleton.el (skeleton-insert): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/skeleton.el | 5 |
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 @@ | |||
| 1 | 2014-06-21 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * skeleton.el (skeleton-insert): Doc fix. | ||
| 4 | |||
| 1 | 2014-06-20 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2014-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. | |||
| 200 | If ELEMENT is a string or a character it gets inserted (see also | 200 | If 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 | |||
| 215 | After termination, point will be positioned at the last occurrence of - | 215 | After termination, point will be positioned at the last occurrence of - |
| 216 | or at the first occurrence of _ or at the end of the inserted text. | 216 | or at the first occurrence of _ or at the end of the inserted text. |
| 217 | 217 | ||
| 218 | Note that \\n only inserts a newline if not at eol. If you want to insert | ||
| 219 | a newline unconditionally, use \"\\n\" instead. | ||
| 220 | |||
| 218 | Further elements can be defined via `skeleton-further-elements'. | 221 | Further elements can be defined via `skeleton-further-elements'. |
| 219 | ELEMENT may itself be a SKELETON with an INTERACTOR. The user is prompted | 222 | ELEMENT may itself be a SKELETON with an INTERACTOR. The user is prompted |
| 220 | repeatedly for different inputs. The SKELETON is processed as often as | 223 | repeatedly for different inputs. The SKELETON is processed as often as |