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

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

[elpa] master 3d74bb5 013/215: More FSF copyright assignments.


From: Rocky Bernstein
Subject: [elpa] master 3d74bb5 013/215: More FSF copyright assignments.
Date: Sat, 30 Jul 2016 14:48:48 +0000 (UTC)

branch: master
commit 3d74bb58c46228bf693b9211e3bb5851c2a4c135
Author: rocky <address@hidden>
Commit: rocky <address@hidden>

    More FSF copyright assignments.
    Include mode-map bindings in mode-map variables
---
 realgud/common/backtrace-mode.el          |   21 +++++++++++++++++++--
 realgud/common/track-mode.el              |   24 +++++++++++++++++++++---
 realgud/debugger/bashdb/core.el           |   17 ++++++++++++++++-
 realgud/debugger/jdb/backtrack-mode.el    |   22 +++++++++++++++++++---
 realgud/debugger/jdb/track-mode.el        |    2 ++
 realgud/debugger/kshdb/track-mode.el      |   17 ++++++++++++++++-
 realgud/debugger/nodejs/track-mode.el     |   17 ++++++++++++++++-
 realgud/debugger/pdb/track-mode.el        |   19 +++++++++++++++++--
 realgud/debugger/perldb/track-mode.el     |   19 +++++++++++++++++--
 realgud/debugger/pydb/track-mode.el       |   20 +++++++++++++++++---
 realgud/debugger/trepan/backtrack-mode.el |   22 ++++++++++++++++++++--
 realgud/debugger/trepan3k/track-mode.el   |   19 +++++++++++++++++--
 realgud/debugger/trepan8/track-mode.el    |   17 ++++++++++++++++-
 13 files changed, 213 insertions(+), 23 deletions(-)

diff --git a/realgud/common/backtrace-mode.el b/realgud/common/backtrace-mode.el
index 1ea2648..96fec26 100644
--- a/realgud/common/backtrace-mode.el
+++ b/realgud/common/backtrace-mode.el
@@ -1,5 +1,20 @@
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 ;;; Debugger Backtrace buffer mode settings
-;;; Copyright (C) 2011, 2013, 2015 Rocky Bernstein <address@hidden>
 (require 'load-relative)
 (require-relative-list  '("menu" "key") "realgud-")
 (require-relative-list  '("buffer/command") "realgud-buffer-")
@@ -72,7 +87,9 @@
     ;;     (cons "Stack window" submenu)
     ;;     'placeholder))
     map)
-  "Keymap to navigate realgud stack frames.")
+  "Keymap to navigate realgud stack frames.
+
+\\{realgud-backtrace-mode-map}")
 
 (defun realgud-backtrace-mode (&optional cmdbuf)
   "Major mode for displaying the stack frames.
diff --git a/realgud/common/track-mode.el b/realgud/common/track-mode.el
index 0f25ab8..c2c1dcd 100644
--- a/realgud/common/track-mode.el
+++ b/realgud/common/track-mode.el
@@ -1,5 +1,20 @@
-;;; Copyright (C) 2010-2015 Rocky Bernstein <address@hidden>
-;;; tracks shell output
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+;; tracks shell output
 
 (eval-when-compile (require 'cl))
 (require 'shell)
@@ -35,7 +50,10 @@
     (define-key map [M-S-up]   'realgud-track-hist-oldest)
     (define-key map "\C-cS" 'realgud-window-src-undisturb-cmd)
     map)
-  "Keymap used in `realgud-track-minor-mode'.")
+  "Keymap used in `realgud-track-minor-mode'.
+
+\\{realgud-track-mode-map}")
+
 
 (defvar realgud:tool-bar-map
   (let ((map (make-sparse-keymap)))
diff --git a/realgud/debugger/bashdb/core.el b/realgud/debugger/bashdb/core.el
index c02d6b3..7d6e215 100644
--- a/realgud/debugger/bashdb/core.el
+++ b/realgud/debugger/bashdb/core.el
@@ -1,4 +1,19 @@
-;;; Copyright (C) 2010-2011, 2014-2015 Rocky Bernstein <address@hidden>
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 (eval-when-compile (require 'cl))
 
 (require 'load-relative)
diff --git a/realgud/debugger/jdb/backtrack-mode.el 
b/realgud/debugger/jdb/backtrack-mode.el
index 1de8386..179ac63 100644
--- a/realgud/debugger/jdb/backtrack-mode.el
+++ b/realgud/debugger/jdb/backtrack-mode.el
@@ -1,6 +1,20 @@
-;;; Copyright (C) 2014 Rocky Bernstein <address@hidden>
+;; Copyright (C) 2015 Free Software Foundation, Inc
 
-;;; Mode for parsing various kinds of backtraces found in Java
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+;; Mode for parsing various kinds of backtraces found in Java
 
 (eval-when-compile (require 'cl))
 (require 'load-relative)
@@ -33,7 +47,9 @@ described by PT."
   (kbd "C-c !c") 'realgud:jdb-goto-control-frame-line)
 
 (define-minor-mode jdb-backtrack-mode
-  "Minor mode for tracking ruby debugging inside a file which may not have 
process shell."
+  "Minor mode for tracking ruby debugging inside a file which may not have 
process shell.
+
+\\{jdb-backtrack-mode-map}"
   :init-value nil
   ;; :lighter " jdb"   ;; mode-line indicator from realgud-track is sufficient.
   ;; The minor mode bindings.
diff --git a/realgud/debugger/jdb/track-mode.el 
b/realgud/debugger/jdb/track-mode.el
index d7922b7..fcdfa89 100644
--- a/realgud/debugger/jdb/track-mode.el
+++ b/realgud/debugger/jdb/track-mode.el
@@ -60,6 +60,8 @@ described by PT."
   "Minor mode for tracking jdb source locations inside a process shell via 
realgud. jdb is a Ruby debugger.
 
 If called interactively with no prefix argument, the mode is toggled. A prefix 
argument, captured as ARG, enables the mode if the argument is positive, and 
disables it otherwise.
+
+\\{realgud:jdb-track-mode-map}
 "
   :init-value nil
   ;; :lighter " jdb"   ;; mode-line indicator from realgud-track is sufficient.
diff --git a/realgud/debugger/kshdb/track-mode.el 
b/realgud/debugger/kshdb/track-mode.el
index b4d4678..ea62baf 100644
--- a/realgud/debugger/kshdb/track-mode.el
+++ b/realgud/debugger/kshdb/track-mode.el
@@ -1,4 +1,19 @@
-;;; Copyright (C) 2012, 2014-2015 Rocky Bernstein <address@hidden>
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 ;;; "kshdb" Debugger tracking a comint or eshell buffer.
 
 (eval-when-compile (require 'cl))
diff --git a/realgud/debugger/nodejs/track-mode.el 
b/realgud/debugger/nodejs/track-mode.el
index bc8c304..1ea7795 100644
--- a/realgud/debugger/nodejs/track-mode.el
+++ b/realgud/debugger/nodejs/track-mode.el
@@ -1,4 +1,19 @@
-;;; Copyright (C) 2014-2015 Rocky Bernstein <address@hidden>
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 ;;; nodejs tracking a comint buffer.
 
 (eval-when-compile (require 'cl))
diff --git a/realgud/debugger/pdb/track-mode.el 
b/realgud/debugger/pdb/track-mode.el
index b1d6029..7958eae 100644
--- a/realgud/debugger/pdb/track-mode.el
+++ b/realgud/debugger/pdb/track-mode.el
@@ -1,5 +1,20 @@
-;;; Copyright (C) 2010, 2012-2015 Rocky Bernstein <address@hidden>
-;;; Python "pdb" Debugger tracking a comint buffer.
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+;; Python "pdb" Debugger tracking a comint buffer.
 
 (eval-when-compile (require 'cl))
 (require 'load-relative)
diff --git a/realgud/debugger/perldb/track-mode.el 
b/realgud/debugger/perldb/track-mode.el
index 336c7e6..3d27722 100644
--- a/realgud/debugger/perldb/track-mode.el
+++ b/realgud/debugger/perldb/track-mode.el
@@ -1,5 +1,20 @@
-;;; Copyright (C) 2011-2015 Rocky Bernstein <address@hidden>
-;;; Stock Perl Debugger "perldb5" tracking a comint or eshell buffer.
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+;; Stock Perl Debugger "perldb5" tracking a comint or eshell buffer.
 
 (eval-when-compile (require 'cl))
 (require 'load-relative)
diff --git a/realgud/debugger/pydb/track-mode.el 
b/realgud/debugger/pydb/track-mode.el
index cf8dab3..142717b 100644
--- a/realgud/debugger/pydb/track-mode.el
+++ b/realgud/debugger/pydb/track-mode.el
@@ -1,6 +1,20 @@
-;;; Copyright (C) 2010, 2012, 2014-2015 Rocky Bernstein <address@hidden>
-;;; Python "pydb" Debugger tracking a comint
-;;; or eshell buffer.
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+;; Python "pydb" Debugger
 
 (eval-when-compile (require 'cl))
 (require 'load-relative)
diff --git a/realgud/debugger/trepan/backtrack-mode.el 
b/realgud/debugger/trepan/backtrack-mode.el
index 51a75ce..c655779 100644
--- a/realgud/debugger/trepan/backtrack-mode.el
+++ b/realgud/debugger/trepan/backtrack-mode.el
@@ -1,4 +1,19 @@
-;;; Copyright (C) 2011, 2014 Rocky Bernstein <address@hidden>
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 ;;; Mode for parsing various kinds of backtraces found in Ruby
 
@@ -33,7 +48,10 @@ described by PT."
   (kbd "C-c !c") 'realgud:trepan-goto-control-frame-line)
 
 (define-minor-mode trepan-backtrack-mode
-  "Minor mode for tracking ruby debugging inside a file which may not have 
process shell."
+  "Minor mode for tracking ruby debugging inside a file which may not have 
process shell.
+
+\\{trepan-backtrack-mode-map}
+"
   :init-value nil
   ;; :lighter " trepan"   ;; mode-line indicator from realgud-track is 
sufficient.
   ;; The minor mode bindings.
diff --git a/realgud/debugger/trepan3k/track-mode.el 
b/realgud/debugger/trepan3k/track-mode.el
index fb5fe77..afb94f1 100644
--- a/realgud/debugger/trepan3k/track-mode.el
+++ b/realgud/debugger/trepan3k/track-mode.el
@@ -1,5 +1,20 @@
-;;; Copyright (C) 2010, 2012-2015 Rocky Bernstein <address@hidden>
-;;; Python "trepan3k" Debugger tracking a comint buffer.
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+;; Python "trepan3k" Debugger tracking a comint buffer.
 
 (eval-when-compile (require 'cl))
 (require 'load-relative)
diff --git a/realgud/debugger/trepan8/track-mode.el 
b/realgud/debugger/trepan8/track-mode.el
index 93e057c..5ffb7de 100644
--- a/realgud/debugger/trepan8/track-mode.el
+++ b/realgud/debugger/trepan8/track-mode.el
@@ -1,4 +1,19 @@
-;;; Copyright (C) 2010-2011, 2014-2015 Rocky Bernstein <address@hidden>
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 ;;; Ruby "trepan8" Debugger tracking a comint buffer.
 
 (eval-when-compile (require 'cl))



reply via email to

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