emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/ada-mode.release updated (fa4f86a75b -> a4ecb2e2e2)


From: Stephen Leake
Subject: [elpa] externals/ada-mode.release updated (fa4f86a75b -> a4ecb2e2e2)
Date: Sat, 22 Oct 2022 12:53:33 -0400 (EDT)

stephen_leake pushed a change to branch externals/ada-mode.release.

      from  fa4f86a75b Release ada-mode 7.2.1; minor bug fixes
      adds  d5428433e3 Add Makefile for compiling in elpa worktree
      adds  ca7f481130 Merge commit 'd5428433e39f3de7168fdc891127a2dcff849904' 
into externals/ada-mode
      adds  74978b1a90 Update to current devel version, for beta test
      adds  c1dc7da319 * Makefile: Add byte-compile
      adds  701457fc18 * benchmark-xref.el: Add copyright notice
      adds  1bed747968 * Makefile (clean): New
      adds  a489c9d4ea Build.sh now works properly
      adds  d110a6a08e Release testing version 7.3.beta
      adds  a4ecb2e2e2 * ada-mode.el: Bump version to 7.3.beta1

No new revisions were added by this update.

Summary of changes:
 .gitignore                                  |     8 +-
 Makefile                                    |    51 +
 NEWS                                        |    70 +-
 README                                      |     2 +-
 ada-build.el                                |    14 +-
 ada-compiler-gnat.el                        |   103 +-
 ada-core.el                                 |   234 +-
 ada-gnat-xref.el                            |    10 +-
 ada-indent-user-options.el                  |    60 +-
 ada-mode.el                                 |   297 +-
 ada-mode.texi                               |   145 +-
 ada-skel.el                                 |    54 +-
 ada.wy                                      |  2652 ---
 ada-process.el => ada_annex_p-process.el    |   785 +-
 ada_annex_p.wy                              |  2761 +++
 ada_annex_p_process_actions.adb             | 15703 ++++++++++++
 ada_annex_p_process_actions.ads             |  3729 +++
 ada_annex_p_process_lalr_main.adb           | 32902 ++++++++++++++++++++++++++
 ada_annex_p_process_lalr_main.ads           |    31 +
 ada_annex_p_process_lr1_main.adb            |  1803 ++
 ada_annex_p_process_lr1_main.ads            |    32 +
 ada_re2c.c => ada_annex_p_re2c.c            | 13566 +++++++----
 ada_re2c_c.ads => ada_annex_p_re2c_c.ads    |    41 +-
 ada_lr1_parse_table.txt.gz                  |   Bin 5209667 -> 0 bytes
 ada_mode.prj                                |     1 +
 ada_mode_wisi_lalr_parse.ads                |    15 +-
 ada_mode_wisi_lr1_parse.ads                 |    19 +-
 ada_mode_wisi_parse.gpr.gp                  |    56 +-
 ada_process_actions.adb                     |  5237 ----
 ada_process_actions.ads                     |  2108 --
 ada_process_lalr_main.adb                   | 16487 -------------
 ada_process_lalr_main.ads                   |    32 -
 ada_process_lr1_main.adb                    |   483 -
 ada_process_lr1_main.ads                    |    33 -
 benchmark-xref.el                           |    59 +
 build.sh                                    |    30 +-
 config.pragmas                              |     6 -
 create_makefile_conf.sh                     |    19 +
 dir                                         |    22 -
 gnat-core.el                                |   449 -
 gpr-mode.el                                 |     2 +
 gpr-mode.info                               |   737 -
 gpr-process.el                              |     7 +-
 gpr-query.el                                |   377 +-
 gpr-skel.el                                 |     7 +-
 gpr.wy                                      |    53 +-
 gpr_mode_wisi_parse.ads                     |    13 +-
 gpr_process_actions.adb                     |   325 +-
 gpr_process_actions.ads                     |   205 +-
 gpr_process_main.adb                        |  4090 ++--
 gpr_process_main.ads                        |    19 +-
 gpr_query.adb                               |    81 +-
 gpr_re2c.c                                  |  4441 ++--
 gpr_re2c_c.ads                              |    27 +-
 prj.el                                      |     8 +-
 run_ada_lalr_parse.ads                      |    14 +-
 run_ada_lr1_parse.ads                       |    16 +-
 run_gpr_parse.ads                           |    10 +-
 wisi-ada-format_parameter_list.adb          |   125 +-
 wisi-ada.adb                                |  1197 +-
 wisi-ada.ads                                |   183 +-
 wisi-gpr.adb                                |    54 +-
 wisi-gpr.ads                                |    36 +-
 wisitoken-parse-lr-mckenzie_recover-ada.adb |  1362 +-
 wisitoken-parse-lr-mckenzie_recover-ada.ads |    21 +-
 65 files changed, 74856 insertions(+), 38663 deletions(-)
 create mode 100644 Makefile
 delete mode 100644 ada.wy
 rename ada-process.el => ada_annex_p-process.el (62%)
 create mode 100644 ada_annex_p.wy
 create mode 100644 ada_annex_p_process_actions.adb
 create mode 100644 ada_annex_p_process_actions.ads
 create mode 100644 ada_annex_p_process_lalr_main.adb
 create mode 100644 ada_annex_p_process_lalr_main.ads
 create mode 100644 ada_annex_p_process_lr1_main.adb
 create mode 100644 ada_annex_p_process_lr1_main.ads
 rename ada_re2c.c => ada_annex_p_re2c.c (59%)
 rename ada_re2c_c.ads => ada_annex_p_re2c_c.ads (59%)
 delete mode 100644 ada_lr1_parse_table.txt.gz
 delete mode 100644 ada_process_actions.adb
 delete mode 100644 ada_process_actions.ads
 delete mode 100644 ada_process_lalr_main.adb
 delete mode 100644 ada_process_lalr_main.ads
 delete mode 100644 ada_process_lr1_main.adb
 delete mode 100644 ada_process_lr1_main.ads
 create mode 100644 benchmark-xref.el
 delete mode 100644 config.pragmas
 create mode 100755 create_makefile_conf.sh
 delete mode 100644 dir
 delete mode 100644 gnat-core.el
 delete mode 100644 gpr-mode.info



reply via email to

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