diff options
| author | Glenn Morris | 2014-06-21 12:45:59 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-06-21 12:45:59 -0700 |
| commit | c400516ab1d827d08225ffb3e1bc1969c73cc45e (patch) | |
| tree | b16343b9e11c916c96b12ab56b6024cad91d3aff /doc/misc | |
| parent | 539ad293eb36b4cf458cbdb5a6b37f5cd1bb68a1 (diff) | |
| parent | 8047f439ec7d0bbe0085800a13bee8da883ae4dd (diff) | |
| download | emacs-c400516ab1d827d08225ffb3e1bc1969c73cc45e.tar.gz emacs-c400516ab1d827d08225ffb3e1bc1969c73cc45e.zip | |
Merge from emacs-24; up to 2014-06-06T02:22:40Z!monnier@iro.umontreal.ca
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/ChangeLog | 9 | ||||
| -rw-r--r-- | doc/misc/autotype.texi | 7 | ||||
| -rw-r--r-- | doc/misc/dbus.texi | 4 |
3 files changed, 16 insertions, 4 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index a6ddb15496d..a1a99e5fd06 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 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 | |||
| 6 | 2014-06-21 Michael Albinus <michael.albinus@gmx.de> | ||
| 7 | |||
| 8 | * dbus.texi (Type Conversion): Formatting edits in example. | ||
| 9 | |||
| 1 | 2014-06-15 Michael Albinus <michael.albinus@gmx.de> | 10 | 2014-06-15 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 11 | ||
| 3 | Sync with Tramp 2.2.10. | 12 | Sync with Tramp 2.2.10. |
diff --git a/doc/misc/autotype.texi b/doc/misc/autotype.texi index 04f74cc44cb..e0fce74bd3f 100644 --- a/doc/misc/autotype.texi +++ b/doc/misc/autotype.texi | |||
| @@ -232,8 +232,11 @@ 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 | Insert a newline and align under current line, but not if this is the |
| 236 | @code{?\n} to prevent alignment. | 236 | last element of a skeleton and the newline would be inserted at end of |
| 237 | line. Use newline character @code{?\n} to prevent alignment. Use | ||
| 238 | @code{"\n"} as the last string element of a skeleton to insert a | ||
| 239 | newline after the skeleton unconditionally. | ||
| 237 | @item @code{_} | 240 | @item @code{_} |
| 238 | Interesting point. When wrapping skeletons around successive regions, they are | 241 | 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. | 242 | put at these places. Point is left at first @code{_} where nothing is wrapped. |
diff --git a/doc/misc/dbus.texi b/doc/misc/dbus.texi index e7f822498b6..0c19cb963e7 100644 --- a/doc/misc/dbus.texi +++ b/doc/misc/dbus.texi | |||
| @@ -1060,11 +1060,11 @@ elements of this array. Example: | |||
| 1060 | "" ;; No icon. | 1060 | "" ;; No icon. |
| 1061 | "Notification summary" ;; Summary. | 1061 | "Notification summary" ;; Summary. |
| 1062 | (format ;; Body. | 1062 | (format ;; Body. |
| 1063 | "This is a test notification, raised from %s" (emacs-version)) | 1063 | "This is a test notification, raised from\n%S" (emacs-version)) |
| 1064 | '(:array) ;; No actions (empty array of strings). | 1064 | '(:array) ;; No actions (empty array of strings). |
| 1065 | '(:array :signature "@{sv@}") ;; No hints | 1065 | '(:array :signature "@{sv@}") ;; No hints |
| 1066 | ;; (empty array of dictionary entries). | 1066 | ;; (empty array of dictionary entries). |
| 1067 | :int32 -1) ;; Default timeout. | 1067 | :int32 -1) ;; Default timeout. |
| 1068 | 1068 | ||
| 1069 | @result{} 3 | 1069 | @result{} 3 |
| 1070 | @end lisp | 1070 | @end lisp |