aboutsummaryrefslogtreecommitdiffstats
path: root/doc
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
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')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/positions.texi6
-rw-r--r--doc/misc/ChangeLog9
-rw-r--r--doc/misc/autotype.texi7
-rw-r--r--doc/misc/dbus.texi4
5 files changed, 26 insertions, 5 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 4089068c906..3b7ca9c7288 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12014-06-21 Eli Zaretskii <eliz@gnu.org>
2
3 * positions.texi (Screen Lines): Clarify how columns are counted
4 by vertical-motion.
5
12014-06-15 Glenn Morris <rgm@gnu.org> 62014-06-15 Glenn Morris <rgm@gnu.org>
2 7
3 * Makefile.in (bootstrap-clean): New. 8 * Makefile.in (bootstrap-clean): New.
diff --git a/doc/lispref/positions.texi b/doc/lispref/positions.texi
index 5a77b37e7e1..e32f0ef0b34 100644
--- a/doc/lispref/positions.texi
+++ b/doc/lispref/positions.texi
@@ -500,7 +500,11 @@ is negative, it moves up instead.
500The @var{count} argument can be a cons cell, @code{(@var{cols} 500The @var{count} argument can be a cons cell, @code{(@var{cols}
501. @var{lines})}, instead of an integer. Then the function moves by 501. @var{lines})}, instead of an integer. Then the function moves by
502@var{lines} screen lines, and puts point @var{cols} columns from the 502@var{lines} screen lines, and puts point @var{cols} columns from the
503start of that screen line. 503visual start of that screen line. Note that @var{cols} are counted
504from the @emph{visual} start of the line; if the window is scrolled
505horizontally (@pxref{Horizontal Scrolling}), the column on which point
506will end is in addition to the number of columns by which the text is
507scrolled.
504 508
505The return value is the number of screen lines over which point was 509The return value is the number of screen lines over which point was
506moved. The value may be less in absolute value than @var{count} if 510moved. The value may be less in absolute value than @var{count} if
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