[elpa] externals/realgud-trepan-ni f8787ba 3/4: Merge branch 'master' of github.com:realgud/realgud-trepan-ni

2019-05-24 Thread Rocky Bernstein
branch: externals/realgud-trepan-ni
commit f8787ba6d0c14b8d95bec0b38925cfb102850eb8
Merge: 743740f a56f72b
Author: rocky 
Commit: rocky 

Merge branch 'master' of github.com:realgud/realgud-trepan-ni
---
 trepan-ni/init.el | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/trepan-ni/init.el b/trepan-ni/init.el
index 605a1ee..4dc5542 100644
--- a/trepan-ni/init.el
+++ b/trepan-ni/init.el
@@ -1,4 +1,5 @@
 ;; Copyright (C) 2019 Free Software Foundation, Inc
+;; Author: Rocky Bernstein
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
@@ -17,6 +18,7 @@
 
 (eval-when-compile (require 'cl-lib))   ;For setf.
 
+(require 'load-relative)
 (require 'realgud)
 (require 'realgud-lang-js)
 (require 'ansi-color)
@@ -171,12 +173,12 @@ trepan-ni command to use, like 'out'.")
 (setf (gethash "continue"   realgud:trepan-ni-command-hash) "cont")
 (setf (gethash "delete" realgud:trepan-ni-command-hash)
   "deleteBreakpoint(%p)")
-
+(setf (gethash "eval"   realgud:trepan-ni-command-hash) "eval('%s')")
+(setf (gethash "finish" realgud:trepan-ni-command-hash) "out")
+(setf (gethash "info-breakpoints" realgud:trepan-ni-command-hash) 
"breakpoints")
 (setf (gethash "kill"   realgud:trepan-ni-command-hash) "kill")
 (setf (gethash "quit"   realgud:trepan-ni-command-hash) ".exit")
-(setf (gethash "finish" realgud:trepan-ni-command-hash) "out")
 (setf (gethash "shell"  realgud:trepan-ni-command-hash) "repl")
-(setf (gethash "eval"   realgud:trepan-ni-command-hash) "eval('%s')")
 
 ;; We need aliases for step and next because the default would
 ;; do step 1 and trepan-ni doesn't handle this. And if it did,



[elpa] externals/realgud-trepan-ni a56f72b 1/4: Add "info breakpoints"

2019-05-24 Thread Rocky Bernstein
branch: externals/realgud-trepan-ni
commit a56f72b72c06131d9b909016a4202f4885c65335
Author: rocky 
Commit: rocky 

Add "info breakpoints"
---
 trepan-ni/init.el | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/trepan-ni/init.el b/trepan-ni/init.el
index 605a1ee..4dc5542 100644
--- a/trepan-ni/init.el
+++ b/trepan-ni/init.el
@@ -1,4 +1,5 @@
 ;; Copyright (C) 2019 Free Software Foundation, Inc
+;; Author: Rocky Bernstein
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
@@ -17,6 +18,7 @@
 
 (eval-when-compile (require 'cl-lib))   ;For setf.
 
+(require 'load-relative)
 (require 'realgud)
 (require 'realgud-lang-js)
 (require 'ansi-color)
@@ -171,12 +173,12 @@ trepan-ni command to use, like 'out'.")
 (setf (gethash "continue"   realgud:trepan-ni-command-hash) "cont")
 (setf (gethash "delete" realgud:trepan-ni-command-hash)
   "deleteBreakpoint(%p)")
-
+(setf (gethash "eval"   realgud:trepan-ni-command-hash) "eval('%s')")
+(setf (gethash "finish" realgud:trepan-ni-command-hash) "out")
+(setf (gethash "info-breakpoints" realgud:trepan-ni-command-hash) 
"breakpoints")
 (setf (gethash "kill"   realgud:trepan-ni-command-hash) "kill")
 (setf (gethash "quit"   realgud:trepan-ni-command-hash) ".exit")
-(setf (gethash "finish" realgud:trepan-ni-command-hash) "out")
 (setf (gethash "shell"  realgud:trepan-ni-command-hash) "repl")
-(setf (gethash "eval"   realgud:trepan-ni-command-hash) "eval('%s')")
 
 ;; We need aliases for step and next because the default would
 ;; do step 1 and trepan-ni doesn't handle this. And if it did,



[elpa] externals/realgud-trepan-ni a7abd80 4/4: Copyright to FSF

2019-05-24 Thread Rocky Bernstein
branch: externals/realgud-trepan-ni
commit a7abd80b5d4d6f4189973a63a2e88e4ef6ca1a27
Author: rocky 
Commit: rocky 

Copyright to FSF
---
 trepan-ni/core.el   | 4 +++-
 trepan-ni/init.el   | 2 +-
 trepan-ni/track-mode.el | 3 ++-
 trepan-ni/trepan-ni.el  | 4 ++--
 4 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/trepan-ni/core.el b/trepan-ni/core.el
index 85a71ac..5c6798c 100644
--- a/trepan-ni/core.el
+++ b/trepan-ni/core.el
@@ -1,4 +1,6 @@
-;;; Copyright (C) 2015-2019 Rocky Bernstein 
+;; Copyright (C) 2015-2019 Free Software Foundation, Inc
+;; Author: Rocky Bernstein 
+
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation, either version 3 of the License, or
diff --git a/trepan-ni/init.el b/trepan-ni/init.el
index 4dc5542..68f3db3 100644
--- a/trepan-ni/init.el
+++ b/trepan-ni/init.el
@@ -1,5 +1,5 @@
 ;; Copyright (C) 2019 Free Software Foundation, Inc
-;; Author: Rocky Bernstein
+;; Author: Rocky Bernstein 
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
diff --git a/trepan-ni/track-mode.el b/trepan-ni/track-mode.el
index b6f6bc8..5aa34c6 100644
--- a/trepan-ni/track-mode.el
+++ b/trepan-ni/track-mode.el
@@ -1,5 +1,6 @@
 ;;; track-mode.el ---
-;;; Copyright (C) 2016, 2018 Rocky Bernstein 
+;; Copyright (C) 2015, 2016-2019 Free Software Foundation, Inc
+;; Author: Rocky Bernstein 
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
diff --git a/trepan-ni/trepan-ni.el b/trepan-ni/trepan-ni.el
index c48b9fc..ae16044 100644
--- a/trepan-ni/trepan-ni.el
+++ b/trepan-ni/trepan-ni.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2016, 2018-2019 Rocky Bernstein
+;; Copyright (C) 2015, 2016-2019 Free Software Foundation, Inc
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
@@ -25,7 +25,7 @@
 (defgroup realgud:trepan-ni nil
   "The realgud interface to the trepan-ni debugger"
   :group 'realgud
-  :version "24.3")
+  :version "25.1")
 
 ;; ---
 ;; User-definable variables



[elpa] externals/realgud-trepan-ni updated (a57fced -> a7abd80)

2019-05-24 Thread Rocky Bernstein
rocky pushed a change to branch externals/realgud-trepan-ni.

  from  a57fced   Administrivia
   new  743740f   Remove deprecated function in shell script
   new  a56f72b   Add "info breakpoints"
   new  f8787ba   Merge branch 'master' of 
github.com:realgud/realgud-trepan-ni
   new  a7abd80   Copyright to FSF


Summary of changes:
 common.mk.in| 2 +-
 trepan-ni/core.el   | 4 +++-
 trepan-ni/init.el   | 8 +---
 trepan-ni/track-mode.el | 3 ++-
 trepan-ni/trepan-ni.el  | 4 ++--
 5 files changed, 13 insertions(+), 8 deletions(-)



[elpa] externals/realgud-trepan-ni 743740f 2/4: Remove deprecated function in shell script

2019-05-24 Thread Rocky Bernstein
branch: externals/realgud-trepan-ni
commit 743740f7fa97ddb1e326c18486f45540a058d07a
Author: rocky 
Commit: rocky 

Remove deprecated function in shell script
---
 common.mk.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common.mk.in b/common.mk.in
index c28f493..032d0d7 100644
--- a/common.mk.in
+++ b/common.mk.in
@@ -19,6 +19,6 @@ short:
  EMACSLOADPATH=$(EMACSLOADPATH) $(EMACS) --batch \
$(AM_ELCFLAGS) $(ELCFLAGS) \
$$am__subdir_includes -L $(builddir) -L $(srcdir) \
-   --eval "(defun byte-compile-dest-file (f) \"$@\")" \
+   --eval "(defun byte-compile-dest-file-function (f) \"$@\")" \
--eval "(unless (byte-compile-file \"$<\") (kill-emacs 1))"; \
else :; fi



[elpa] externals/realgud-lldb a261c50: Copyright to FSF

2019-05-24 Thread Rocky Bernstein
branch: externals/realgud-lldb
commit a261c50435db258322a40434c7b5ccd5ff8b349b
Author: rocky 
Commit: rocky 

Copyright to FSF
---
 lldb/lldb.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lldb/lldb.el b/lldb/lldb.el
index d5eac3b..27d1232 100644
--- a/lldb/lldb.el
+++ b/lldb/lldb.el
@@ -1,4 +1,5 @@
-;; Copyright (C) 2016, 2018, 2019 Rocky Bernstein
+;; Copyright (C) 2016-2019 Free Software Foundation, Inc
+;; Author: Rocky Bernstein 
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by



[elpa] master updated (b5e394d -> 4caaae5)

2019-05-24 Thread Thomas Fitzsimmons
fitzsim pushed a change to branch master.

  from  b5e394d   Add realgud-jdb.
   new  c6d5666   packages/excorporate: Fix comment typo.
   new  4caaae5   packages/excorporate: Fix generated whitespace issue


Summary of changes:
 packages/excorporate/excorporate-diary.el | 2 +-
 packages/excorporate/excorporate-org.el   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



[elpa] master 4caaae5 2/2: packages/excorporate: Fix generated whitespace issue

2019-05-24 Thread Thomas Fitzsimmons
branch: master
commit 4caaae52b1946a8f50892653f2ede233a7d64e0b
Author: Thomas Fitzsimmons 
Commit: Thomas Fitzsimmons 

packages/excorporate: Fix generated whitespace issue

* packages/excorporate/excorporate-org.el
(exco-org-insert-meetings): Add newline after rarity indicator.
---
 packages/excorporate/excorporate-org.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/excorporate/excorporate-org.el 
b/packages/excorporate/excorporate-org.el
index 2266161..a17d060 100644
--- a/packages/excorporate/excorporate-org.el
+++ b/packages/excorporate/excorporate-org.el
@@ -121,7 +121,7 @@ are the requested participants."
   (if (save-excursion (org-goto-first-child))
  (org-sort-entries t ?s)
(forward-line 3)
-   (insert "`♘")
+   (insert "`♘\n")
 
 (defun exco-org-finalize-buffer ()
   "Finalize text in buffer after all connections have responded."



[elpa] master c6d5666 1/2: packages/excorporate: Fix comment typo.

2019-05-24 Thread Thomas Fitzsimmons
branch: master
commit c6d566633276259d78bed7046a41348186555d32
Author: Thomas Fitzsimmons 
Commit: Thomas Fitzsimmons 

packages/excorporate: Fix comment typo.

* packages/excorporate/excorporate-diary.el
(exco-diary-insert-meeting): Fix comment typo.
---
 packages/excorporate/excorporate-diary.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/excorporate/excorporate-diary.el 
b/packages/excorporate/excorporate-diary.el
index c4c94e1..a418f71 100644
--- a/packages/excorporate/excorporate-diary.el
+++ b/packages/excorporate/excorporate-diary.el
@@ -123,7 +123,7 @@ Call FINALIZE after the meeting has been inserted."
   (when (not (string-match "^Cancel[l]?ed: " subject))
 ;; FIXME: Sometimes meetings are duplicated if they have
 ;; overlapping (and (diary-cyclic ...) (diary-block ...)) ranges,
-;; e.g., on in the today file and one in the transient file.
+;; e.g., one in the today file and one in the transient file.
 ;; Maybe we should de-duplicate them in the final display.  If the
 ;; meeting start time is sometime today then put it in today's
 ;; diary file, otherwise put it in the transient one.



[elpa] externals/fountain-mode a9e14ec: Fix fountain-version bug

2019-05-24 Thread Paul Rankin
branch: externals/fountain-mode
commit a9e14ec8f821210710316f794ddf7ac26f30c6c7
Author: Paul W. Rankin 
Commit: Paul W. Rankin 

Fix fountain-version bug
---
 fountain-mode.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/fountain-mode.el b/fountain-mode.el
index 0602098..ee851f8 100644
--- a/fountain-mode.el
+++ b/fountain-mode.el
@@ -91,8 +91,9 @@
 (eval-when-compile (require 'subr-x))
 (eval-when-compile (require 'cl-lib))
 
-(defconst fountain-version
-  (lm-version))
+(eval-and-compile
+  (defconst fountain-version
+(lm-version)))
 
 (defun fountain-version ()
   "Return `fountain-mode' version."



[elpa] externals/realgud-jdb 5e3211a: Small fixes...

2019-05-24 Thread Rocky Bernstein
branch: externals/realgud-jdb
commit 5e3211a17a8282d2d0027e73149e01034082bc41
Author: rocky 
Commit: rocky 

Small fixes...

Correct summary that appears in {m,}elpa
function lint
---
 realgud-jdb.el  |  2 +-
 realgud-jdb/core.el | 17 -
 2 files changed, 13 insertions(+), 6 deletions(-)

diff --git a/realgud-jdb.el b/realgud-jdb.el
index 331f478..4e07033 100644
--- a/realgud-jdb.el
+++ b/realgud-jdb.el
@@ -1,4 +1,4 @@
-;;; realgud-jdb.el --- Realgud front-end to older nodejs "node debug" -*- 
lexical-binding: t -*-
+;;; realgud-jdb.el --- Realgud front-end to Java's jdb debugger" -*- 
lexical-binding: t -*-
 
 ;; Author: Rocky Bernstein 
 ;; Version: 1.0.0
diff --git a/realgud-jdb/core.el b/realgud-jdb/core.el
index 42dd369..f1e2f67 100644
--- a/realgud-jdb/core.el
+++ b/realgud-jdb/core.el
@@ -14,13 +14,20 @@
 (require 'realgud)
 (require-relative-list '("init") "realgud-jdb-")
 
-(declare-function realgud--strip  'realgud-utils)
-(declare-function realgud--expand-file-name-if-exists 'realgud-core)
+(declare-function realgud:strip  'realgud-utils)
+(declare-function realgud-cmdbuf-ignore-re-file-list
+ 'realgud-buffer-command)
+(declare-function realgud-cmdbuf-filename-remap-alist
+ 'realgud-buffer-command)
+(declare-function realgud-cmdbuf-filename-remap-alist=
+ 'realgud-buffer-command)
 (declare-function realgud-parse-command-arg  'realgud-core)
 (declare-function realgud-query-cmdline  'realgud-core)
 (declare-function realgud-suggest-invocation 'realgud-core)
 (declare-function realgud--file-loc-from-line 'realgud-file)
-(declare-function realgud--find-file  'realgud-file)
+(declare-function realgud:find-file   'realgud-file)
+(declare-function realgud:file-ignore 'realgud-file)
+
 
 ;; FIXME: I think the following could be generalized and moved to
 ;; realgud-... probably via a macro.
@@ -57,7 +64,7 @@ we will prompt for a mapping and save that the remap."
 (cmdbuf (realgud-get-cmdbuf))
 (ignore-re-file-list (realgud-cmdbuf-ignore-re-file-list cmdbuf))
 (filename-remap-alist (realgud-cmdbuf-filename-remap-alist))
-(stripped-filename (realgud--strip filename))
+(stripped-filename (realgud:strip filename))
 (gud-jdb-filename (gud-jdb-find-source stripped-filename))
 (remapped-filename
  (assoc filename filename-remap-alist))
@@ -83,7 +90,7 @@ we will prompt for a mapping and save that the remap."
  (guess-filename (realgud--jdb-dot-to-slash filename)))
  (setq remapped-filename
(buffer-file-name
-(realgud--find-file marker guess-filename
+(realgud:find-file marker guess-filename
directory "%s.java")))
  (when (and remapped-filename (file-exists-p remapped-filename))
(realgud-cmdbuf-filename-remap-alist=



[elpa] master 0eee5cf 1/2: * packages/debbugs/debbugs-gnu.el (debbugs-gnu-show-reports):

2019-05-24 Thread Michael Albinus
branch: master
commit 0eee5cf4612a8b0eeea0e64bd968bd2a237297e1
Author: Michael Albinus 
Commit: Michael Albinus 

* packages/debbugs/debbugs-gnu.el (debbugs-gnu-show-reports):

Show also `fixed' attribute.
---
 packages/debbugs/debbugs-gnu.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/packages/debbugs/debbugs-gnu.el b/packages/debbugs/debbugs-gnu.el
index 84f1a2e..fad31a0 100644
--- a/packages/debbugs/debbugs-gnu.el
+++ b/packages/debbugs/debbugs-gnu.el
@@ -742,6 +742,8 @@ are taken from the cache instead."
 merged)
(unless (equal (cdr (assq 'pending status)) "pending")
  (setq words (append words (list (cdr (assq 'pending status))
+   (when (cdr (assq 'fixed status))
+ (setq words (append words '("fixed"
(let ((packages (cdr (assq 'package status
  (dolist (elt packages)
(when (member elt debbugs-gnu-default-packages)



[elpa] master 0cc410e 2/2: Merge branch 'master' of git://bzr.sv.gnu.org/emacs/elpa

2019-05-24 Thread Michael Albinus
branch: master
commit 0cc410ef32ae020b285cee1cfa2f37b03a124bff
Merge: 0eee5cf 4caaae5
Author: Michael Albinus 
Commit: Michael Albinus 

Merge branch 'master' of git://bzr.sv.gnu.org/emacs/elpa
---
 README |  23 +-
 externals-list |   6 +
 packages/excorporate/excorporate-diary.el  |   2 +-
 packages/excorporate/excorporate-org.el|   2 +-
 packages/gnorb/gnorb-utils.el  |   6 +-
 packages/realgud-ipdb/.gitignore   |  25 ---
 packages/realgud-ipdb/Makefile.am  |  49 
 packages/realgud-ipdb/README.md|   1 -
 packages/realgud-ipdb/autogen.sh   |  12 -
 packages/realgud-ipdb/common.mk.in |  24 --
 packages/realgud-ipdb/configure.ac |  55 -
 packages/realgud-ipdb/ipdb/Makefile.am |   5 -
 packages/realgud-ipdb/ipdb/core.el | 249 -
 packages/realgud-ipdb/ipdb/init.el | 161 -
 packages/realgud-ipdb/ipdb/ipdb.el | 125 ---
 packages/realgud-ipdb/ipdb/track-mode.el   |  75 ---
 packages/realgud-ipdb/realgud-ipdb.el  |  46 
 packages/realgud-ipdb/test/Makefile.am |  73 --
 packages/realgud-ipdb/test/gcd.py  |  41 
 packages/realgud-ipdb/test/make-check-filter.rb|  24 --
 packages/realgud-ipdb/test/regexp-helper.el|  61 -
 packages/realgud-ipdb/test/test-ipdb.el|  40 
 packages/realgud-ipdb/test/test-regexp-ipdb.el | 108 -
 packages/realgud-node-debug/.gitignore |  21 --
 packages/realgud-node-debug/INSTALL.md |   5 -
 packages/realgud-node-debug/Makefile.am|  49 
 packages/realgud-node-debug/README.md  |   6 -
 packages/realgud-node-debug/autogen.sh |  12 -
 packages/realgud-node-debug/common.mk  |  24 --
 packages/realgud-node-debug/common.mk.in   |  24 --
 packages/realgud-node-debug/compute-lispdir.sh |  46 
 packages/realgud-node-debug/configure.ac   |  55 -
 packages/realgud-node-debug/realgud-node-debug.el  |  50 -
 .../realgud-node-debug/.nosearch   |   8 -
 .../realgud-node-debug/Makefile.am |   5 -
 .../realgud-node-debug/realgud-node-debug/core.el  | 170 --
 .../realgud-node-debug/realgud-node-debug/init.el  | 188 
 .../realgud-node-debug/realgud-node-debug/main.el  |  85 ---
 .../realgud-node-debug/track-mode.el   |  84 ---
 packages/realgud-node-debug/test/Makefile.am   |  70 --
 packages/realgud-node-debug/test/gcd.js|  45 
 .../realgud-node-debug/test/make-check-filter.rb   |  24 --
 packages/realgud-node-debug/test/regexp-helper.el  |  50 -
 .../test/test-loc-regexp-node-debug.el | 118 --
 .../realgud-node-debug/test/test-node-debug.el |  37 ---
 packages/realgud-node-inspect/.gitignore   |  21 --
 packages/realgud-node-inspect/INSTALL.md   |   5 -
 packages/realgud-node-inspect/Makefile.am  |  49 
 packages/realgud-node-inspect/README.md|   6 -
 packages/realgud-node-inspect/autogen.sh   |  12 -
 packages/realgud-node-inspect/common.mk|  24 --
 packages/realgud-node-inspect/common.mk.in |  24 --
 packages/realgud-node-inspect/compute-lispdir.sh   |  46 
 packages/realgud-node-inspect/configure.ac |  55 -
 .../realgud-node-inspect/realgud-node-inspect.el   |  52 -
 .../realgud-node-inspect/.nosearch |   8 -
 .../realgud-node-inspect/Makefile.am   |   5 -
 .../realgud-node-inspect/core.el   | 172 --
 .../realgud-node-inspect/init.el   | 188 
 .../realgud-node-inspect/main.el   |  84 ---
 .../realgud-node-inspect/track-mode.el |  84 ---
 packages/realgud-node-inspect/test/Makefile.am |  70 --
 packages/realgud-node-inspect/test/gcd.js  |  45 
 .../realgud-node-inspect/test/make-check-filter.rb |  24 --
 .../realgud-node-inspect/test/regexp-helper.el |  50 -
 .../test/test-loc-regexp-node-inspect.el   | 118 --
 .../realgud-node-inspect/test/test-node-inspect.el |  37 ---
 67 files changed, 29 insertions(+), 3539 deletions(-)

diff --git a/README b/README
index e0c9faf..9589009 100644
--- a/README
+++ b/README
@@ -228,15 +228,28 @@ In the `external' case, the copy of the code is not kept 
in `master` but in the
 `externals/' branch in the `elpa.git' repository.
 
 To add a new externals package, first add this `elpa.git' repository as a
-new remote in your existing repository.  Then push a local branch to a
+new remote in your existing repository.
+
+Then push a local branch to a
 new rem