branch: master
commit ea27a82d5f65dc85c81ec8925e27817d5b895f1e
Author: rocky <[email protected]>
Commit: rocky <[email protected]>
More copyright assignments to FSF
---
realgud/debugger/gdb/core.el | 19 ++++++++++++++++++-
realgud/debugger/gdb/gdb.el | 19 ++++++++++++++++++-
realgud/debugger/gdb/track-mode.el | 2 +-
realgud/debugger/pdb/core.el | 19 ++++++++++++++++++-
realgud/debugger/pdb/init.el | 19 +++++++++++++++++--
realgud/debugger/pdb/pdb.el | 18 +++++++++++++++++-
6 files changed, 89 insertions(+), 7 deletions(-)
diff --git a/realgud/debugger/gdb/core.el b/realgud/debugger/gdb/core.el
index 98f80ac..3b66ad5 100644
--- a/realgud/debugger/gdb/core.el
+++ b/realgud/debugger/gdb/core.el
@@ -1,4 +1,21 @@
-;;; Copyright (C) 2010, 2013-2014 Rocky Bernstein <[email protected]>
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <[email protected]>
+
+;; 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/>.
+;;; Copyright (C) 2014-2015 Rocky Bernstein <[email protected]>
+
(eval-when-compile (require 'cl))
(require 'load-relative)
diff --git a/realgud/debugger/gdb/gdb.el b/realgud/debugger/gdb/gdb.el
index 3f2994a..9db9c02 100644
--- a/realgud/debugger/gdb/gdb.el
+++ b/realgud/debugger/gdb/gdb.el
@@ -1,4 +1,21 @@
-;;; Copyright (C) 2010-2011, 2014-2015 Rocky Bernstein <[email protected]>
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <[email protected]>
+
+;; 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/>.
+;;; Copyright (C) 2014-2015 Rocky Bernstein <[email protected]>
+
;; `realgud:gdb' Main interface to gdb via Emacs
(require 'cl)
(require 'list-utils)
diff --git a/realgud/debugger/gdb/track-mode.el
b/realgud/debugger/gdb/track-mode.el
index 772ca14..5df254d 100644
--- a/realgud/debugger/gdb/track-mode.el
+++ b/realgud/debugger/gdb/track-mode.el
@@ -17,7 +17,7 @@
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
-;;; gdb tracking a comint or eshell buffer.
+;; gdb tracking a comint or eshell buffer.
(eval-when-compile (require 'cl))
(require 'load-relative)
diff --git a/realgud/debugger/pdb/core.el b/realgud/debugger/pdb/core.el
index ac22040..36a7634 100644
--- a/realgud/debugger/pdb/core.el
+++ b/realgud/debugger/pdb/core.el
@@ -1,4 +1,21 @@
-;;; Copyright (C) 2012-2014 Rocky Bernstein <[email protected]>
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <[email protected]>
+
+;; 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/>.
+;;; Copyright (C) 2014-2015 Rocky Bernstein <[email protected]>
+
(eval-when-compile (require 'cl))
(require 'load-relative)
diff --git a/realgud/debugger/pdb/init.el b/realgud/debugger/pdb/init.el
index 8a7b056..dfcb765 100644
--- a/realgud/debugger/pdb/init.el
+++ b/realgud/debugger/pdb/init.el
@@ -1,5 +1,20 @@
-;;; Copyright (C) 2012, 2015 Rocky Bernstein <[email protected]>
-;;; Stock Python debugger pdb
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <[email protected]>
+
+;; 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 Python debugger pdb
(eval-when-compile (require 'cl))
diff --git a/realgud/debugger/pdb/pdb.el b/realgud/debugger/pdb/pdb.el
index 8f87e63..5c643a3 100644
--- a/realgud/debugger/pdb/pdb.el
+++ b/realgud/debugger/pdb/pdb.el
@@ -1,4 +1,20 @@
-;;; Copyright (C) 2012, 2014 Rocky Bernstein <[email protected]>
+;; Copyright (C) 2015 Free Software Foundation, Inc
+
+;; Author: Rocky Bernstein <[email protected]>
+
+;; 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/>.
+
;; `pdb' Main interface to pdb via Emacs
(require 'load-relative)
(require-relative-list '("core" "track-mode") "realgud:pdb-")