diff options
| author | Eli Zaretskii | 2014-06-21 11:05:39 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2014-06-21 11:05:39 +0300 |
| commit | 637bce026b02dc188eea42188e1d8ea8f4d3de3f (patch) | |
| tree | 86843f48ffe77a4d355fd552209d42465b089875 | |
| parent | 900f9384095f8e968e6149e72568e0547dc0d587 (diff) | |
| download | emacs-637bce026b02dc188eea42188e1d8ea8f4d3de3f.tar.gz emacs-637bce026b02dc188eea42188e1d8ea8f4d3de3f.zip | |
Improve documentation of \n in a skeleton.
doc/misc/autotype.texi (Skeleton Language): Document the feature of \n
when at eol.
| -rw-r--r-- | doc/misc/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/misc/autotype.texi | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index d3a7f66cdaf..b1d7c3a7a0c 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-06-21 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * autotype.texi (Skeleton Language): Document the feature of \n | ||
| 4 | when at eol. | ||
| 5 | |||
| 1 | 2014-06-15 Michael Albinus <michael.albinus@gmx.de> | 6 | 2014-06-15 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 7 | ||
| 3 | * dbus.texi (Type Conversion): Formatting edits in example. | 8 | * dbus.texi (Type Conversion): Formatting edits in example. |
diff --git a/doc/misc/autotype.texi b/doc/misc/autotype.texi index fd4477e1636..c5f0703cf19 100644 --- a/doc/misc/autotype.texi +++ b/doc/misc/autotype.texi | |||
| @@ -232,8 +232,9 @@ Insert string or character. Literal strings and characters are passed through | |||
| 232 | @code{skeleton-transformation} when that is non-@code{nil}. | 232 | @code{skeleton-transformation} when that is non-@code{nil}. |
| 233 | @item @code{?\n} | 233 | @item @code{?\n} |
| 234 | @c ??? something seems very wrong here. | 234 | @c ??? something seems very wrong here. |
| 235 | Insert a newline and align under current line. Use newline character | 235 | If not at end of line, insert a newline and align under current line. |
| 236 | @code{?\n} to prevent alignment. | 236 | Use newline character @code{?\n} to prevent alignment. Use |
| 237 | @code{"\n"} as a string to insert a newline unconditionally. | ||
| 237 | @item @code{_} | 238 | @item @code{_} |
| 238 | Interesting point. When wrapping skeletons around successive regions, they are | 239 | Interesting point. When wrapping skeletons around successive regions, they are |
| 239 | put at these places. Point is left at first @code{_} where nothing is wrapped. | 240 | put at these places. Point is left at first @code{_} where nothing is wrapped. |