emacs-diffs
[Top][All Lists]
Advanced

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

feature/android updated (67db3bfdc27 -> 4d4a96b2061)


From: Po Lu
Subject: feature/android updated (67db3bfdc27 -> 4d4a96b2061)
Date: Sat, 13 May 2023 20:31:14 -0400 (EDT)

oldosfan pushed a change to branch feature/android.

      from  67db3bfdc27 Merge remote-tracking branch 'origin/master' into 
feature/android
      adds  d9f674aea50 Fix opaque region specification on no-toolkit builds
      adds  fa598571ada Fix detection of tab bar windows on PGTK
      adds  bfc07100d28 Byte-compiler warning about mutation of constant values
      adds  ef1f4068f6f ; * lisp/wid-edit.el (widget-specify-insert): Fix debug 
spec.  (Bug#63437)
      adds  b8bcd42cabc Revert "Don't have nntp-report signal an error"
      adds  60d5a015d1f Update to Transient v0.4.0
      adds  6fa9332e7cd Ensure that EXTRA-DATA are always written when 
generating autoloads
      adds  ba2c76fa2bc Ensure that package menu respects 
'package-install-upgrade-built-in'
      adds  09d6070e56e ; Improve and update documentation of built-in package 
upgrades
      adds  32b42b333ca ; * etc/NEWS: Fix wording in last change.
      adds  acf4763417e Fix mouse highlight with some fonts in Cairo builds
      adds  85ed1c9ca6b Code cleanup for long line optimizations
      adds  7e26a5c774e Remove labeled restrictions before calling Fwiden
      adds  afc2c6c13cb Improve accuracy of cursor motion commands in long lines
      adds  974e4f33333 Make get_medium_narrowing_begv/zv static
      adds  2093e010dc1 Fix cursor motion in character-only terminals
      adds  dce08cf05cc Improve and fix last changes
      adds  097c5ee8f55 Two further fixes to last changes
      adds  0cc8d6826ad Three final fixes to last changes
      adds  c0b9530862c Another final fix to last changes
      adds  f0f08eeb05c Fix the return type of 'labeled_restrictions_get_bound'
      adds  1e3a66df459 Add an assertion in, and a commentary for, 
'get_nearby_bol_pos'
      adds  dcf8c011028 Merge branch 'scratch/long-lines-cleanup' into 
'emacs-29'
      adds  4bda9627349 ; * admin/git-bisect-start: Update failing commits
      adds  7acae22f42f Fix auto-filling in Texinfo mode
      adds  ea986a64b23 Merge from origin/emacs-29
      adds  c083fa5cf80 Eglot: support window/showRequest (bug#62116)
      adds  9f856e4cd09 Use `mutate-constant` as warning identifier
      adds  63be4d11b58 Don't mutate constants in tests
      adds  e6585e0be2e Always default ediff-auto-refine to 'on
      adds  c96c8a9a7d2 ; * lisp/vc/ediff-diff.el (ediff-auto-refine): Fix last 
change.
      adds  38706abdf7f Add helper for restoring local session vars in ERC
      adds  75a412d78b6 Optionally add spacing between ERC messages
      adds  867b1040107 Make some module toggles more resilient in ERC
      adds  a7dcc0d55c6 Fix regexp bugs
       new  4d4a96b2061 Merge remote-tracking branch 'origin/master' into 
feature/android


Summary of changes:
 admin/git-bisect-start                             |   5 +-
 doc/emacs/package.texi                             |  50 ++-
 doc/lispref/positions.texi                         |   1 +
 doc/misc/transient.texi                            |   4 +-
 etc/ERC-NEWS                                       |   7 +
 etc/NEWS                                           |  20 ++
 etc/NEWS.29                                        |   7 +
 lisp/emacs-lisp/byte-run.el                        |   2 +-
 lisp/emacs-lisp/bytecomp.el                        |  55 ++++
 lisp/emacs-lisp/loaddefs-gen.el                    |  15 +-
 lisp/emacs-lisp/package.el                         |   4 +-
 lisp/erc/erc-common.el                             |   4 +-
 lisp/erc/erc-fill.el                               | 163 +++++-----
 lisp/erc/erc-goodies.el                            |  34 +-
 lisp/erc/erc-imenu.el                              |   5 +-
 lisp/erc/erc-match.el                              |   2 +
 lisp/erc/erc-sasl.el                               |  38 +--
 lisp/erc/erc-spelling.el                           |   5 +-
 lisp/erc/erc-stamp.el                              |  10 +-
 lisp/erc/erc.el                                    |  83 ++++-
 lisp/gnus/nntp.el                                  |   4 +-
 lisp/obsolete/mantemp.el                           |   2 +-
 lisp/progmodes/eglot.el                            |  25 +-
 lisp/progmodes/idlwave.el                          |   2 +-
 lisp/subr.el                                       |   4 +-
 lisp/textmodes/texinfo.el                          |  14 +-
 lisp/transient.el                                  |  11 +-
 lisp/vc/ediff-diff.el                              |   2 +-
 lisp/wid-edit.el                                   |   2 +-
 src/buffer.c                                       |   1 +
 src/callproc.c                                     |   1 +
 src/composite.c                                    |   4 +-
 src/dispextern.h                                   |  37 +--
 src/dispnew.c                                      |  14 +-
 src/editfns.c                                      | 347 +++++++++++----------
 src/fileio.c                                       |   1 +
 src/ftcrfont.c                                     |   1 -
 src/indent.c                                       |   1 +
 src/keyboard.c                                     |  12 +-
 src/lisp.h                                         |   6 +-
 src/lread.c                                        |   1 +
 src/pgtkfns.c                                      |   7 -
 src/pgtkterm.c                                     |  23 +-
 src/pgtkterm.h                                     |   1 -
 src/window.h                                       |   2 +-
 src/xdisp.c                                        | 209 ++++++++++---
 src/xterm.c                                        |  27 +-
 test/lisp/emacs-lisp/bytecomp-tests.el             |  30 ++
 test/lisp/emacs-lisp/cl-macs-tests.el              |   2 +-
 test/lisp/emacs-lisp/cl-print-tests.el             |   2 +-
 .../emacs-lisp/eieio-tests/eieio-test-persist.el   |   4 +-
 test/lisp/emacs-lisp/subr-x-tests.el               |  17 +-
 test/lisp/erc/erc-fill-tests.el                    |  24 +-
 test/lisp/erc/erc-goodies-tests.el                 |  17 +-
 test/lisp/erc/erc-tests.el                         |  15 +
 .../resources/fill/snapshots/spacing-01-mono.eld   |   1 +
 test/lisp/net/tramp-archive-tests.el               |   4 +-
 test/lisp/textmodes/reftex-tests.el                |   3 +-
 test/src/fns-tests.el                              |   2 +-
 test/src/xdisp-tests.el                            |   2 +-
 60 files changed, 946 insertions(+), 452 deletions(-)
 create mode 100644 test/lisp/erc/resources/fill/snapshots/spacing-01-mono.eld



reply via email to

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