]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge from origin/emacs-26
authorGlenn Morris <rgm@gnu.org>
Wed, 10 Apr 2019 16:07:16 +0000 (09:07 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 10 Apr 2019 16:07:16 +0000 (09:07 -0700)
a5da653 * src/editfns.c (Fnarrow_to_region): Doc fix.  (Bug#35163)
646d33d Fix doc strings of 'vc-version-diff' and 'vc-version-ediff'
a30a6c3 Improve documentation of set-window-start
92ce2dd Improve documentation of window parameters
6dc42c5 Improve commentary in frame.el
a8cffcf Fix typo in a doc string
9e79f19 (emacs-26) ; * src/fontset.c (set-fontset-font): Use uppercas...

# Conflicts:
# lisp/vc/vc.el

1  2 
doc/lispref/windows.texi
lisp/autorevert.el
lisp/frame.el
lisp/vc/vc.el
src/editfns.c
src/fontset.c
src/window.c

Simple merge
Simple merge
diff --cc lisp/frame.el
Simple merge
diff --cc lisp/vc/vc.el
Simple merge
diff --cc src/editfns.c
index bfffadc733d88ef1ec03a257ac59cad00366ea25,9b76ae23ffdcab4e1460c271d69f5957c80af4f2..6fb43af4e9c4e71ffec09d8f62d5d561cb5eac56
@@@ -2686,14 -3840,15 +2686,15 @@@ but is not deleted; if you save the buf
  text is included in the file.  \\[widen] makes all visible again.
  See also `save-restriction'.
  
- When calling from a program, pass two arguments; positions (integers
- or markers) bounding the text that should remain visible.  */)
+ When calling from Lisp, pass two arguments START and END:
+ positions (integers or markers) bounding the text that should
+ remain visible.  */)
    (register Lisp_Object start, Lisp_Object end)
  {
 -  CHECK_NUMBER_COERCE_MARKER (start);
 -  CHECK_NUMBER_COERCE_MARKER (end);
 +  CHECK_FIXNUM_COERCE_MARKER (start);
 +  CHECK_FIXNUM_COERCE_MARKER (end);
  
 -  if (XINT (start) > XINT (end))
 +  if (XFIXNUM (start) > XFIXNUM (end))
      {
        Lisp_Object tem;
        tem = start; start = end; end = tem;
diff --cc src/fontset.c
Simple merge
diff --cc src/window.c
Simple merge