emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] xwidget updated (a1124bc -> 0298a2c)


From: Joakim Verona
Subject: [Emacs-diffs] xwidget updated (a1124bc -> 0298a2c)
Date: Thu, 15 Jan 2015 15:19:38 +0000

jave pushed a change to branch xwidget.

      from  a1124bc   Update to new DEFSYM strategy
      adds  38bb639   * files.el (directory-files-recursively): Do not include 
remote file names.
      adds  4113ac2   Further eww URL DWIM tweaks
      adds  a3eebe9   Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
      adds  5092578   * coding.c (Fcoding_system_plist): Use common style for 
docstring.
      adds  23ffeb9   * src/buffer.c (init_buffer_once): Initialize 
buffer_local_flags early.
      adds  c2774f3   Say "ELC foo.elc" instead of "GEN foo.elc"
      adds  d703a4d   Have 'make' output better GEN names
      adds  fb35f1f   Adjust frame heights to real height of tool bar.
      adds  e946a9a   Miscellaneous tiny fixes here and there.
      adds  cc59a3e   Add autoload cookie for xref-marker-stack-empty-p 
(Bug#19554).
      adds  52afe0c   Port to 32-bit MingGW --with-wide-int
      adds  329b902   Don't eagerly load xref
      adds  ad9c4a4   Support const and noreturn DEFUN attributes.
      adds  b53b1ca   Consolidate duplicated string matching code.
      adds  233dcf1   In adjust_frame_size don't return too early after font 
size change.
      adds  0064e36   Make Fnext_read_file_uses_dialog_p compatible with recent 
DEFUN change.
      adds  c302473   Fixes: debbugs:19552
      adds  30c5f5c   Allow compilation during loading of Modes derived from a 
CC Mode mode. Fixes debbugs#19206.
      adds  5aa618b   Fix problems with 32-bit wide-int build exposed by MinGW
      adds  5647847   Remove now-unnecessary forward XTYPE decl
      adds  785adfc   Don't say Fnext_read_file_uses_dialog_p is const
      adds  3ef2950   Use bool for boolean in xmenu.c, xml.c
      adds  01ebf7a   Avoid extra multibyteness check in ENCODE_FILE users.
      adds  d7e26b4   Consolidate common path transformation code.
      adds  d4b352a   remove_slash_colon need not be inline
      adds  da396be   Consistently handle time zone specification.
      adds  99a1492   Fix last time zone handling change.
      adds  009836b   Never move gap in make_buffer_string_both.
      adds  81882be   * lisp/net/eww.el: Use lexical-binding.
      adds  9602b62   In update_frame_menubar remove garbaged code.
      adds  e7db8e8   Fix crashes on MS-Windows due to pop-up menus  (Bug#19596)
      adds  9def17e   * lisp/emacs-lisp/cl-generic.el: New file.
      adds  483c98a   * lisp/emacs-lisp/eieio-core.el: Provide support for 
cl-generic.
      adds  0e97c44   # Set copyright to FSF, standardize license notice
       new  0298a2c   merge master


Summary of changes:
 admin/ChangeLog                           |    7 +
 admin/unidata/Makefile.in                 |    7 +-
 etc/NEWS                                  |    2 +
 lib-src/ChangeLog                         |   17 +
 lib-src/make-docfile.c                    |  135 +++++--
 lisp/ChangeLog                            |  124 ++++++-
 lisp/Makefile.in                          |   30 +-
 lisp/emacs-lisp/cl-generic.el             |  607 +++++++++++++++++++++++++++++
 lisp/emacs-lisp/cl-macs.el                |   52 ++-
 lisp/emacs-lisp/eieio-core.el             |   28 ++-
 lisp/files.el                             |    5 +-
 lisp/frame.el                             |   58 ++--
 lisp/menu-bar.el                          |    3 +-
 lisp/net/eww.el                           |   38 +-
 lisp/progmodes/cc-bytecomp.el             |   72 +++-
 lisp/progmodes/cc-defs.el                 |   43 ++-
 lisp/progmodes/cc-langs.el                |    5 +-
 lisp/progmodes/xref.el                    |    1 +
 src/.gdbinit                              |   21 +-
 src/ChangeLog                             |  233 +++++++++++
 src/Makefile.in                           |    9 +-
 src/buffer.c                              |  161 +++++----
 src/callint.c                             |    3 +-
 src/callproc.c                            |   23 +-
 src/character.c                           |    6 +-
 src/coding.c                              |    2 +-
 src/data.c                                |   42 ++-
 src/decompress.c                          |    3 +-
 src/dired.c                               |   29 +-
 src/dispnew.c                             |    3 +-
 src/editfns.c                             |   88 +++--
 src/emacs.c                               |    3 +-
 src/eval.c                                |    3 +-
 src/fileio.c                              |   13 +-
 src/fns.c                                 |    3 +-
 src/frame.c                               |  111 ++++--
 src/frame.h                               |    6 +
 src/gnutls.c                              |    6 +-
 src/gtkutil.c                             |    2 +-
 src/image.c                               |    3 +-
 src/keyboard.c                            |   17 +-
 src/lisp.h                                |   31 +-
 src/nsfns.m                               |    6 +-
 src/process.c                             |   19 +-
 src/process.h                             |    2 +
 src/search.c                              |   31 +--
 src/w32fns.c                              |   55 ++-
 src/w32heap.c                             |    2 +-
 src/w32menu.c                             |   49 ++-
 src/w32proc.c                             |   11 +-
 src/w32term.h                             |    4 +-
 src/window.c                              |    5 +-
 src/xdisp.c                               |   16 +-
 src/xfaces.c                              |    3 +-
 src/xfns.c                                |   13 +-
 src/xmenu.c                               |  119 +++----
 src/xml.c                                 |   29 +-
 src/xrdb.c                                |    2 +-
 src/xsettings.c                           |    2 +-
 src/xterm.c                               |    8 +-
 src/xterm.h                               |    2 +-
 test/ChangeLog                            |   11 +
 test/automated/cl-generic-tests.el        |  133 +++++++
 test/automated/eieio-test-methodinvoke.el |   72 ++--
 64 files changed, 2040 insertions(+), 609 deletions(-)
 create mode 100644 lisp/emacs-lisp/cl-generic.el
 create mode 100644 test/automated/cl-generic-tests.el



reply via email to

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