branch: master
commit 67ccb9c9da7133f2439eb7bef975ba2202c2c969
Author: rocky <[email protected]>
Commit: rocky <[email protected]>
Reassign copyright to FSF in recently change files
---
realgud/common/run.el | 17 +++++++++++++++++
realgud/common/send.el | 18 +++++++++++++++++-
realgud/common/track.el | 18 +++++++++++++++++-
realgud/debugger/gdb/init.el | 18 +++++++++++++++++-
realgud/debugger/gdb/track-mode.el | 21 ++++++++++++++++++++-
5 files changed, 88 insertions(+), 4 deletions(-)
diff --git a/realgud/common/run.el b/realgud/common/run.el
index 69041f6..5e4bc5f 100644
--- a/realgud/common/run.el
+++ b/realgud/common/run.el
@@ -1,4 +1,21 @@
+;; 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]>
+
; (require 'term)
(require 'shell)
diff --git a/realgud/common/send.el b/realgud/common/send.el
index be0b16a..3d752ec 100644
--- a/realgud/common/send.el
+++ b/realgud/common/send.el
@@ -1,4 +1,20 @@
-;;; Copyright (C) 2010, 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/>.
+
(require 'comint)
(require 'load-relative)
(require-relative-list '("window") "realgud-")
diff --git a/realgud/common/track.el b/realgud/common/track.el
index 38e6b2c..eddc4be 100644
--- a/realgud/common/track.el
+++ b/realgud/common/track.el
@@ -1,4 +1,20 @@
-;;; Copyright (C) 2011-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/>.
+
(declare-function realgud:terminate &optional cmdbuf)
(defconst realgud-track-char-range 10000
diff --git a/realgud/debugger/gdb/init.el b/realgud/debugger/gdb/init.el
index 789ab24..bfd948c 100644
--- a/realgud/debugger/gdb/init.el
+++ b/realgud/debugger/gdb/init.el
@@ -1,4 +1,20 @@
-;;; Copyright (C) 2010-2011, 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/>.
+
;;; gdb debugger
(eval-when-compile (require 'cl))
diff --git a/realgud/debugger/gdb/track-mode.el
b/realgud/debugger/gdb/track-mode.el
index 1c29898..65beca6 100644
--- a/realgud/debugger/gdb/track-mode.el
+++ b/realgud/debugger/gdb/track-mode.el
@@ -1,4 +1,22 @@
-;;; Copyright (C) 2010, 2012, 2014 Rocky Bernstein <[email protected]>
+;;; track-mode.el ---
+
+;; 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/>.
+
;;; gdb tracking a comint or eshell buffer.
(eval-when-compile (require 'cl))
@@ -52,3 +70,4 @@ Key bindings:
)
(provide-me "realgud:gdb-")
+;;; track-mode.el ends here