aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorGlenn Morris2014-06-21 12:45:59 -0700
committerGlenn Morris2014-06-21 12:45:59 -0700
commitc400516ab1d827d08225ffb3e1bc1969c73cc45e (patch)
treeb16343b9e11c916c96b12ab56b6024cad91d3aff /doc/misc
parent539ad293eb36b4cf458cbdb5a6b37f5cd1bb68a1 (diff)
parent8047f439ec7d0bbe0085800a13bee8da883ae4dd (diff)
downloademacs-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/ChangeLog9
-rw-r--r--doc/misc/autotype.texi7
-rw-r--r--doc/misc/dbus.texi4
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 @@
12014-06-21 Eli Zaretskii <eliz@gnu.org>
2
3 * autotype.texi (Skeleton Language): Document the feature of \n
4 when at eol.
5
62014-06-21 Michael Albinus <michael.albinus@gmx.de>
7
8 * dbus.texi (Type Conversion): Formatting edits in example.
9
12014-06-15 Michael Albinus <michael.albinus@gmx.de> 102014-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.
235Insert a newline and align under current line. Use newline character 235Insert a newline and align under current line, but not if this is the
236@code{?\n} to prevent alignment. 236last element of a skeleton and the newline would be inserted at end of
237line. Use newline character @code{?\n} to prevent alignment. Use
238@code{"\n"} as the last string element of a skeleton to insert a
239newline after the skeleton unconditionally.
237@item @code{_} 240@item @code{_}
238Interesting point. When wrapping skeletons around successive regions, they are 241Interesting point. When wrapping skeletons around successive regions, they are
239put at these places. Point is left at first @code{_} where nothing is wrapped. 242put 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