aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2019-07-06 12:52:12 -0700
committerGlenn Morris2019-07-06 12:52:12 -0700
commitd8732a82451fea57d6efa43e704e0c693e11b517 (patch)
tree7abe0bd16fa581fb9101a1eb67b29ba4030d9eaa
parent206a9b4be7ba6ab0b0204d1ef7ab86389f766c8a (diff)
parent1e6d8e003ce28f508e26eb7107ce5bd0e20bb4b8 (diff)
downloademacs-d8732a82451fea57d6efa43e704e0c693e11b517.tar.gz
emacs-d8732a82451fea57d6efa43e704e0c693e11b517.zip
Merge from origin/emacs-26
1e6d8e0 (origin/emacs-26) ; * doc/emacs/killing.texi (Secondary Selec... e2344a7 * lisp/svg.el, lisp/progmodes/ada-mode.el: Fix bug#36360. ff738ab Minor copyedit of "Font Lock" in user manual faf99dc Improve description of image descriptors 21351cc ; * src/lread.c (Fread): Make the comment wording more accurate. d176090 Improve documentation of secondary selections 8910fe1 * src/fns.c (Fmapconcat): Doc fix. (Bug#36418) # Conflicts: # lisp/svg.el
-rw-r--r--doc/emacs/display.texi8
-rw-r--r--doc/emacs/killing.texi15
-rw-r--r--doc/lispref/display.texi5
-rw-r--r--lisp/progmodes/ada-mode.el1
-rw-r--r--src/fns.c2
-rw-r--r--src/lread.c5
6 files changed, 23 insertions, 13 deletions
diff --git a/doc/emacs/display.texi b/doc/emacs/display.texi
index fe726ea28e5..0ce291335a9 100644
--- a/doc/emacs/display.texi
+++ b/doc/emacs/display.texi
@@ -836,10 +836,10 @@ for instance, programming language modes fontify syntactically
836relevant constructs like comments, strings, and function names. 836relevant constructs like comments, strings, and function names.
837 837
838@findex font-lock-mode 838@findex font-lock-mode
839 Font Lock mode is enabled by default. To toggle it in the current 839 Font Lock mode is enabled by default in major modes that support it.
840buffer, type @kbd{M-x font-lock-mode}. A positive numeric argument 840To toggle it in the current buffer, type @kbd{M-x font-lock-mode}. A
841unconditionally enables Font Lock mode, and a negative or zero 841positive numeric argument unconditionally enables Font Lock mode, and
842argument disables it. 842a negative or zero argument disables it.
843 843
844@findex global-font-lock-mode 844@findex global-font-lock-mode
845@vindex global-font-lock-mode 845@vindex global-font-lock-mode
diff --git a/doc/emacs/killing.texi b/doc/emacs/killing.texi
index 9b9c890331e..c554d2e2839 100644
--- a/doc/emacs/killing.texi
+++ b/doc/emacs/killing.texi
@@ -605,16 +605,19 @@ This command does not alter the kill ring.
605@kindex M-mouse-1 605@kindex M-mouse-1
606@item M-mouse-1 606@item M-mouse-1
607Set one endpoint for the @dfn{secondary selection} 607Set one endpoint for the @dfn{secondary selection}
608(@code{mouse-start-secondary}). 608(@code{mouse-start-secondary}); use @kbd{M-mouse-3} to set the other
609end and complete the selection. This command cancels any existing
610secondary selection, when it starts a new one.
609 611
610@findex mouse-secondary-save-then-kill 612@findex mouse-secondary-save-then-kill
611@kindex M-mouse-3 613@kindex M-mouse-3
612@item M-mouse-3 614@item M-mouse-3
613Set the secondary selection, with one end at the position clicked and 615Set the secondary selection (@code{mouse-secondary-save-then-kill}),
614the other at the position specified with @kbd{M-mouse-1} 616with one end at the position you click @kbd{M-mouse-3}, and the other
615(@code{mouse-secondary-save-then-kill}). This also puts the selected 617at the position specified previously with @kbd{M-mouse-1}. This also
616text in the kill ring. A second @kbd{M-mouse-3} at the same place 618puts the selected text in the kill ring. A second @kbd{M-mouse-3} at
617kills the secondary selection just made. 619the same place kills the text selected by the secondary selection just
620made.
618 621
619@findex mouse-yank-secondary 622@findex mouse-yank-secondary
620@kindex M-mouse-2 623@kindex M-mouse-2
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 5fb6433c7aa..a38569f7263 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -5108,7 +5108,10 @@ Every image descriptor must include this property.
5108 5108
5109@item :file @var{file} 5109@item :file @var{file}
5110This says to load the image from file @var{file}. If @var{file} is 5110This says to load the image from file @var{file}. If @var{file} is
5111not an absolute file name, it is expanded in @code{data-directory}. 5111not an absolute file name, it is expanded relative to the
5112@file{images} subdirectory of @code{data-directory}, and failing that,
5113relative to the directories listed by @code{x-bitmap-file-path}
5114(@pxref{Face Attributes}).
5112 5115
5113@item :data @var{data} 5116@item :data @var{data}
5114This specifies the raw image data. Each image descriptor must have 5117This specifies the raw image data. Each image descriptor must have
diff --git a/lisp/progmodes/ada-mode.el b/lisp/progmodes/ada-mode.el
index 404e704373e..4a4e1a7aad4 100644
--- a/lisp/progmodes/ada-mode.el
+++ b/lisp/progmodes/ada-mode.el
@@ -7,6 +7,7 @@
7;; Emmanuel Briot <briot@gnat.com> 7;; Emmanuel Briot <briot@gnat.com>
8;; Maintainer: Stephen Leake <stephen_leake@stephe-leake.org> 8;; Maintainer: Stephen Leake <stephen_leake@stephe-leake.org>
9;; Keywords: languages ada 9;; Keywords: languages ada
10;; Version: 4.0
10 11
11;; This file is part of GNU Emacs. 12;; This file is part of GNU Emacs.
12 13
diff --git a/src/fns.c b/src/fns.c
index 2fc000a7f43..77c0b15037f 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2674,7 +2674,7 @@ DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0,
2674In between each pair of results, stick in SEPARATOR. Thus, " " as 2674In between each pair of results, stick in SEPARATOR. Thus, " " as
2675 SEPARATOR results in spaces between the values returned by FUNCTION. 2675 SEPARATOR results in spaces between the values returned by FUNCTION.
2676SEQUENCE may be a list, a vector, a bool-vector, or a string. 2676SEQUENCE may be a list, a vector, a bool-vector, or a string.
2677SEPARATOR must be a string. 2677SEPARATOR must be a string, a vector, or a list of characters.
2678FUNCTION must be a function of one argument, and must return a value 2678FUNCTION must be a function of one argument, and must return a value
2679 that is a sequence of characters: either a string, or a vector or 2679 that is a sequence of characters: either a string, or a vector or
2680 list of numbers that are valid character codepoints. */) 2680 list of numbers that are valid character codepoints. */)
diff --git a/src/lread.c b/src/lread.c
index 5fa90cad3f3..27529c3d630 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -2209,7 +2209,10 @@ STREAM or the value of `standard-input' may be:
2209 if (EQ (stream, Qt)) 2209 if (EQ (stream, Qt))
2210 stream = Qread_char; 2210 stream = Qread_char;
2211 if (EQ (stream, Qread_char)) 2211 if (EQ (stream, Qread_char))
2212 /* FIXME: ?! When is this used !? */ 2212 /* FIXME: ?! This is used when the reader is called from the
2213 minibuffer without a stream, as in (read). But is this feature
2214 ever used, and if so, why? IOW, will anything break if this
2215 feature is removed !? */
2213 return call1 (intern ("read-minibuffer"), 2216 return call1 (intern ("read-minibuffer"),
2214 build_string ("Lisp expression: ")); 2217 build_string ("Lisp expression: "));
2215 2218