emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] feature/tramp-thread-safe updated (bedde1f -> 89b80ad)


From: Michael Albinus
Subject: [Emacs-diffs] feature/tramp-thread-safe updated (bedde1f -> 89b80ad)
Date: Mon, 10 Sep 2018 07:21:35 -0400 (EDT)

albinus pushed a change to branch feature/tramp-thread-safe.

      from  bedde1f   Fix Bug#32537
      adds  ab87198   Port better to non-IEEE platforms
      adds  222b597   Rename Emacs-specific INFINITY constants
      adds  a6577d4   * src/process.c (send_process): Fix typo in commentary.
      adds  321b06b   ; Auto-commit of loaddefs files.
      adds  7e24039   * src/lisp.h: Add explanation in a comment
      adds  40f8ade   Make todo-show work when adding and deleting a new todo 
file
      adds  fe042e9   Speed up (+ 2 2) by a factor of 10
      adds  1d84e65   Fix bignum initialization
      adds  628f6a2   Tweak nthcdr for bignum efficiency
      adds  21637d5   Fix (round FLOAT BIGNUM) bug
      adds  425c281   Allow t as a catch-all condition-case handler (Bug#24618)
      adds  c0f6888   Handle non-error signals in emacsclient --eval (Bug#10989)
      adds  e3661f8   Add variable vc-git-grep-template
      adds  ecb985c   Simplify bignum->intmax conversion
      adds  ccb3891   Fix format-time-string bignum bug
      adds  baa6ae8   Improve (round FIXNUM FIXNUM) performance
      adds  e932395   Do not call mh-next-msg from mh-junk-process-* fns
      adds  67475a5   Fix timer.el minor rounding error
      adds  79d7138   * test/lisp/autorevert-tests.el
      adds  bca3531   Fix Bug#31704
      adds  2c8520e   Shrink pseudovectors a bit
      adds  752a05b   Read Windows OS info for report-emacs-bug from Registry
      adds  cab3ca9   Fix overenthusiastic header size check
      adds  28da6ac   One more GC-aligned struct
      adds  f9a72b8   * src/puresize.h (BASE_PURESIZE): Bump to 2000000.
      adds  e489685   Fix documentation for conversion to bignums
      adds  a133b1f   Add list-threads command and thread-list-mode
      adds  3ca82c5   Make lisp/thread.el the new home for thread-related Lisp 
functions
      adds  ea1ec0e   Improve docstrings of thread-list functions
      adds  bdba72b   Make list-threads refresh the *Threads* buffer if it 
already exists
      adds  dc5c76c   Make small fixes to Edebug and debugger documentation
      adds  3fb8f30   Show backtraces of threads from thread list buffer
      adds  e19ca77   Document list-threads and its buffer
      adds  703b1cf   Add check in list-threads for --without-threads 
configuration
      adds  2f5a65a   Add tests for list-threads and the *Threads* buffer
      adds  8adc0e5   Improve documentation of thread list buffer
      adds  b7719f0   Use thread-live-p instead of obsolete thread-alive-p
      adds  a704bad   Merge branch 'scratch/list-threads'
      adds  6a00f2b   Handle buffer-local 'window-size-change-functions' 
specially (Bug#32637)
       new  c291336   Merge remote-tracking branch 'origin/master' into 
feature/tramp-thread-safe
       new  61be020   * src/window.c (run_window_size_change_functions): Fix 
typo.
       new  89b80ad   Remove thread-list.el from a previous merge


Summary of changes:
 doc/lispref/control.texi              |   7 +-
 doc/lispref/edebug.texi               |   2 +
 doc/lispref/elisp.texi                |   4 +-
 doc/lispref/internals.texi            |   4 +-
 doc/lispref/threads.texi              |  51 +++
 doc/lispref/windows.texi              |   8 +
 etc/NEWS                              |  19 +
 lisp/calendar/todo-mode.el            |   4 +-
 lisp/emacs-lisp/thread-list.el        | 128 -------
 lisp/emacs-lisp/thread.el             |  44 ---
 lisp/emacs-lisp/timer.el              |  10 +-
 lisp/eshell/esh-proc.el               |   7 +-
 lisp/ldefs-boot.el                    |  81 +++-
 lisp/mail/emacsbug.el                 |  17 +-
 lisp/mh-e/mh-junk.el                  |   6 +-
 lisp/net/tramp.el                     |   4 +-
 lisp/server.el                        |   2 +-
 lisp/thread.el                        | 200 ++++++++++
 lisp/vc/vc-git.el                     |  10 +-
 lisp/w32-fns.el                       |  99 +++--
 src/alloc.c                           |  24 +-
 src/bignum.c                          |  87 +++--
 src/bignum.h                          |  21 +-
 src/charset.c                         |   4 +-
 src/data.c                            | 685 +++++++++++++---------------------
 src/dbusbind.c                        |  30 +-
 src/dired.c                           |  17 +-
 src/dispextern.h                      |   4 +
 src/dispnew.c                         |  29 +-
 src/editfns.c                         |  49 +--
 src/emacs-module.c                    |  12 +-
 src/emacs.c                           |   1 +
 src/eval.c                            |  69 +++-
 src/fileio.c                          |  16 +-
 src/floatfns.c                        | 127 ++++---
 src/fns.c                             |  15 +-
 src/font.c                            |  25 +-
 src/frame.h                           |   2 +-
 src/keymap.c                          |   4 +-
 src/lisp.h                            | 142 +++++--
 src/lread.c                           |   2 +-
 src/process.c                         |  18 +-
 src/process.h                         |   2 +-
 src/puresize.h                        |   2 +-
 src/scroll.c                          |  30 +-
 src/termhooks.h                       |   2 +-
 src/thread.h                          |   6 +-
 src/w32fns.c                          |  17 +-
 src/window.c                          |  50 ++-
 src/window.h                          |   2 +-
 src/xdisp.c                           |   8 +-
 src/xselect.c                         |  15 +-
 src/xterm.h                           |   2 +-
 src/xwidget.h                         |   4 +-
 test/lisp/autorevert-tests.el         |   1 +
 test/lisp/calendar/todo-mode-tests.el |  76 +++-
 test/lisp/emacs-lisp/timer-tests.el   |   5 +
 test/lisp/thread-tests.el             |  96 +++++
 test/src/editfns-tests.el             |  10 +
 test/src/floatfns-tests.el            |   5 +
 60 files changed, 1409 insertions(+), 1014 deletions(-)
 delete mode 100644 lisp/emacs-lisp/thread-list.el
 delete mode 100644 lisp/emacs-lisp/thread.el
 create mode 100644 lisp/thread.el
 create mode 100644 test/lisp/thread-tests.el



reply via email to

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