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 (b823346 -> c8b5b16)


From: Michael Albinus
Subject: [Emacs-diffs] feature/tramp-thread-safe updated (b823346 -> c8b5b16)
Date: Tue, 7 Aug 2018 06:37:26 -0400 (EDT)

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

      from  b823346   Generalize universal-async-argument
       new  ef57169   Update documentation wrt universal-async-argument
      adds  ba8eb99   Update from gnulib
      adds  e565226   Rename src/regex.c to src/regex-emacs.c.
      adds  d904cc8   Use Gnulib regex for lib-src
      adds  3a6abe6   Simplify regex-emacs code by assuming Emacs
      adds  03dfb60   Simplify regex-emacs by assuming Emacs syntax
      adds  e097826   Remove always-0 struct re_pattern_buffer members
      adds  9c022a4   Spruce up some regex-emacs comments
      adds  bedf905   Fix the MS-Windows build as followup to Gnulib regex 
import
      adds  518c5b6   Correct and improve part of previous todo-mode.el fix
      adds  5f32ba5   Fix todo-mode bug involving active region (bug#32379)
       new  c8b5b16   Merge branch 'master' into feature/tramp-thread-safe


Summary of changes:
 admin/MAINTAINERS                                 |    2 +-
 admin/find-gc.el                                  |    2 +-
 admin/merge-gnulib                                |    7 +-
 build-aux/config.guess                            |    4 +-
 doc/emacs/files.texi                              |   12 +-
 doc/lispref/files.texi                            |    7 +-
 etc/NEWS                                          |    7 +
 lib-src/Makefile.in                               |    8 +-
 lib-src/etags.c                                   |    2 +-
 lib-src/ntlib.c                                   |   67 +
 lib/Makefile.in                                   |    8 +-
 lib/gnulib.mk.in                                  |   23 +
 lib/regcomp.c                                     | 3944 +++++++++++++++++++
 lib/regex.c                                       |   81 +
 lib/regex.h                                       |  658 ++++
 lib/regex_internal.c                              | 1740 +++++++++
 lib/regex_internal.h                              |  911 +++++
 lib/regexec.c                                     | 4324 +++++++++++++++++++++
 lib/unistd.in.h                                   |    4 +-
 lib/warn-on-use.h                                 |   64 +-
 lisp/calendar/todo-mode.el                        |   30 +-
 lisp/char-fold.el                                 |    2 +-
 lisp/files.el                                     |   16 +-
 m4/builtin-expect.m4                              |   49 +
 m4/eealloc.m4                                     |   31 +
 m4/extern-inline.m4                               |   16 +-
 m4/glibc21.m4                                     |   34 +
 m4/gnulib-comp.m4                                 |   30 +
 m4/mbstate_t.m4                                   |   41 +
 m4/regex.m4                                       |  300 ++
 src/Makefile.in                                   |    2 +-
 src/casetab.c                                     |    3 +-
 src/conf_post.h                                   |    7 -
 src/deps.mk                                       |    9 +-
 src/emacs.c                                       |    8 +-
 src/{regex.c => regex-emacs.c}                    | 2751 +++----------
 src/regex-emacs.h                                 |  197 +
 src/regex.h                                       |  654 ----
 src/search.c                                      |   36 +-
 src/syntax.c                                      |   11 +-
 src/thread.h                                      |    6 +-
 test/src/{regex-tests.el => regex-emacs-tests.el} |    6 +-
 42 files changed, 13213 insertions(+), 2901 deletions(-)
 create mode 100644 lib/regcomp.c
 create mode 100644 lib/regex.c
 create mode 100644 lib/regex.h
 create mode 100644 lib/regex_internal.c
 create mode 100644 lib/regex_internal.h
 create mode 100644 lib/regexec.c
 create mode 100644 m4/builtin-expect.m4
 create mode 100644 m4/eealloc.m4
 create mode 100644 m4/glibc21.m4
 create mode 100644 m4/mbstate_t.m4
 create mode 100644 m4/regex.m4
 rename src/{regex.c => regex-emacs.c} (65%)
 create mode 100644 src/regex-emacs.h
 delete mode 100644 src/regex.h
 rename test/src/{regex-tests.el => regex-emacs-tests.el} (99%)



reply via email to

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