aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-10-05 10:19:23 -0700
committerGlenn Morris2014-10-05 10:19:23 -0700
commit249635f0dfb22bcae4c7134e95f01640a6a0d149 (patch)
tree35ee0c4874f81c26a0d2d8ed17eb451f2b3d964b
parent6e604a82a0f8dad3a55c54cf8b64ef2d38106f5b (diff)
parentc938c07bf3505a6d418678a04ff24f25d9039160 (diff)
downloademacs-249635f0dfb22bcae4c7134e95f01640a6a0d149.tar.gz
emacs-249635f0dfb22bcae4c7134e95f01640a6a0d149.zip
Merge from emacs-24; up to 2014-07-21T01:34:03Z!monnier@iro.umontreal.ca
-rw-r--r--doc/emacs/ChangeLog8
-rw-r--r--doc/emacs/misc.texi6
-rw-r--r--doc/emacs/search.texi2
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/imenu.el2
5 files changed, 15 insertions, 7 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 4014725adf0..59d4280e789 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,7 +1,11 @@
12014-10-05 Glenn Morris <rgm@gnu.org>
2
3 * misc.texi (Sorting):
4 * search.texi (Query Replace): Markup fixes.
5
12014-10-04 Martin Rudalics <rudalics@gmx.at> 62014-10-04 Martin Rudalics <rudalics@gmx.at>
2 7
3 * frames.texi (Scroll Bars): Describe use of horizontal scroll 8 * frames.texi (Scroll Bars): Describe use of horizontal scroll bars.
4 bars.
5 9
62014-10-04 Glenn Morris <rgm@gnu.org> 102014-10-04 Glenn Morris <rgm@gnu.org>
7 11
diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi
index 1a865c70cdd..af4d21fe180 100644
--- a/doc/emacs/misc.texi
+++ b/doc/emacs/misc.texi
@@ -1935,9 +1935,9 @@ They divide the text of the region into many @dfn{sort records},
1935identify a @dfn{sort key} for each record, and then reorder the records 1935identify a @dfn{sort key} for each record, and then reorder the records
1936into the order determined by the sort keys. The records are ordered so 1936into the order determined by the sort keys. The records are ordered so
1937that their keys are in alphabetical order, or, for numeric sorting, in 1937that their keys are in alphabetical order, or, for numeric sorting, in
1938numeric order. In alphabetic sorting, all upper-case letters `A' through 1938numeric order. In alphabetic sorting, all upper-case letters @samp{A}
1939`Z' come before lower-case `a', in accord with the @acronym{ASCII} character 1939through @samp{Z} come before lower-case @samp{a}, in accordance with the
1940sequence. 1940@acronym{ASCII} character sequence.
1941 1941
1942 The various sort commands differ in how they divide the text into sort 1942 The various sort commands differ in how they divide the text into sort
1943records and in which part of each record is used as the sort key. Most of 1943records and in which part of each record is used as the sort key. Most of
diff --git a/doc/emacs/search.texi b/doc/emacs/search.texi
index 64ecf165349..bdfb534e186 100644
--- a/doc/emacs/search.texi
+++ b/doc/emacs/search.texi
@@ -1337,7 +1337,7 @@ to replace all remaining occurrences without asking again.
1337 1337
1338@item Y @r{(Upper-case)} 1338@item Y @r{(Upper-case)}
1339to replace all remaining occurrences in all remaining buffers in 1339to replace all remaining occurrences in all remaining buffers in
1340multi-buffer replacements (like the Dired `Q' command which performs 1340multi-buffer replacements (like the Dired @key{Q} command that performs
1341query replace on selected files). It answers this question and all 1341query replace on selected files). It answers this question and all
1342subsequent questions in the series with "yes", without further 1342subsequent questions in the series with "yes", without further
1343user interaction. 1343user interaction.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3a88ac6b37a..039387ed4af 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-10-05 Leo Liu <sdl.web@gmail.com>
2
3 * imenu.el (imenu-default-goto-function): Fix typo.
4
12014-10-04 Thomas Fitzsimmons <fitzsim@fitzsim.org> 52014-10-04 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2 6
3 * net/ntlm.el (ntlm-build-auth-request): 7 * net/ntlm.el (ntlm-build-auth-request):
diff --git a/lisp/imenu.el b/lisp/imenu.el
index e5f33a5efb9..3159b6cc563 100644
--- a/lisp/imenu.el
+++ b/lisp/imenu.el
@@ -1012,7 +1012,7 @@ to `imenu-update-menubar'.")
1012 (imenu item) 1012 (imenu item)
1013 nil)) 1013 nil))
1014 1014
1015(defun imenu-default-goto-function (_name position &optional _rest) 1015(defun imenu-default-goto-function (_name position &rest _rest)
1016 "Move to the given position. 1016 "Move to the given position.
1017 1017
1018NAME is ignored. POSITION is where to move. REST is also ignored. 1018NAME is ignored. POSITION is where to move. REST is also ignored.