emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master e676b7b 11/18: Merge from origin/emacs-25


From: Paul Eggert
Subject: [Emacs-diffs] master e676b7b 11/18: Merge from origin/emacs-25
Date: Wed, 7 Dec 2016 20:54:05 +0000 (UTC)

branch: master
commit e676b7b80b5c5bd65b7a9f28fdac631cf78c22db
Merge: 8cd0d5d d31298d
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Merge from origin/emacs-25
    
    d31298d Fix documentation of `window-combination-resize'
    2086f4c Typo fixes in elisp manual
---
 doc/lispref/sequences.texi |    2 +-
 doc/lispref/strings.texi   |   14 --------------
 doc/lispref/symbols.texi   |    2 +-
 doc/lispref/windows.texi   |    6 +++---
 src/window.c               |    4 ++--
 5 files changed, 7 insertions(+), 21 deletions(-)

diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi
index e879b82..4213086 100644
--- a/doc/lispref/sequences.texi
+++ b/doc/lispref/sequences.texi
@@ -859,7 +859,7 @@ concatenation of @var{sequences}.  @var{type} may be: 
@code{vector},
 @example
 @group
 (seq-concatenate 'list '(1 2) '(3 4) [5 6])
address@hidden (1 2 3 5 6)
address@hidden (1 2 3 4 5 6)
 @end group
 @group
 (seq-concatenate 'string "Hello " "world")
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index c5a6cb2..ff10851 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -508,20 +508,6 @@ filesystems generally don't honor linguistic equivalence 
of strings
 that collation implements.
 @end defun
 
address@hidden string-prefix-p string1 string2 &optional ignore-case
-This function returns address@hidden if @var{string1} is a prefix of
address@hidden; i.e., if @var{string2} starts with @var{string1}.  If
-the optional argument @var{ignore-case} is address@hidden, the
-comparison ignores case differences.
address@hidden defun
-
address@hidden string-suffix-p suffix string &optional ignore-case
-This function returns address@hidden if @var{suffix} is a suffix of
address@hidden; i.e., if @var{string} ends with @var{suffix}.  If the
-optional argument @var{ignore-case} is address@hidden, the comparison
-ignores case differences.
address@hidden defun
-
 @cindex lexical comparison of strings
 @defun string< string1 string2
 @c (findex string< causes problems for permuted index!!)
diff --git a/doc/lispref/symbols.texi b/doc/lispref/symbols.texi
index 8c1ec3d..36a2795 100644
--- a/doc/lispref/symbols.texi
+++ b/doc/lispref/symbols.texi
@@ -157,7 +157,7 @@ that cell can hold only one Lisp object at any given time.
 both as a variable (e.g., with @code{defvar}) and as a function or
 macro (e.g., with @code{defun}).  Such definitions do not conflict.
 
-  These definition also act as guides for programming tools.  For
+  These definitions also act as guides for programming tools.  For
 example, the @kbd{C-h f} and @kbd{C-h v} commands create help buffers
 containing links to the relevant variable, function, or macro
 definitions.  @xref{Name Help,,, emacs, The GNU Emacs Manual}.
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi
index 2823cc5..4dc671c 100644
--- a/doc/lispref/windows.texi
+++ b/doc/lispref/windows.texi
@@ -1620,9 +1620,9 @@ window or too small to ordinarily split.  Furthermore, 
subsequently
 resizing or deleting @var{window} may resize all other windows in its
 combination.
 
-The default is @code{nil}.  Other values are reserved for future use.
-The value of this variable is ignored when
address@hidden is address@hidden
+The default is @code{nil}.  Other values are reserved for future use.  A
+specific split operation may ignore the value of this variable if it is
+affected by a address@hidden value of @code{window-combination-limit}.
 @end defopt
 
   To illustrate the effect of @code{window-combination-resize}, consider
diff --git a/src/window.c b/src/window.c
index acbefcd..e8798f1 100644
--- a/src/window.c
+++ b/src/window.c
@@ -7421,8 +7421,8 @@ same combination.
 
 Other values are reserved for future use.
 
-This variable takes no effect if the variable `window-combination-limit' is
-non-nil.  */);
+A specific split operation may ignore the value of this variable if it
+is affected by a non-nil value of `window-combination-limit'.  */);
   Vwindow_combination_resize = Qnil;
 
   DEFVAR_LISP ("window-combination-limit", Vwindow_combination_limit,



reply via email to

[Prev in Thread] Current Thread [Next in Thread]