branch: master commit 26e67d6d52b1fc15961db28e236d3bf7cc390547 Author: rocky <ro...@gnu.org> Commit: rocky <ro...@gnu.org>
Finish FSF Copyright assignments --- .gitignore | 3 +- Makefile.am | 1 + el-get-install.el | 104 -------------------------- etc/screenshot.el | 16 ++++ realgud/common/bp-image-data.el | 21 ++++++ realgud/common/buffer/helper.el | 15 +++- realgud/common/lang.el | 15 +++- realgud/common/lochist.el | 15 +++- realgud/common/menu.el | 15 +++- realgud/common/regexp.el | 15 +++- realgud/common/reset.el | 15 +++- realgud/common/utils.el | 13 ++++ realgud/common/window.el | 15 +++- realgud/debugger/bashdb/track-mode.el | 8 +- realgud/debugger/gub/core.el | 10 ++- realgud/debugger/gub/track-mode.el | 10 ++- realgud/debugger/ipdb/core.el | 12 +-- realgud/debugger/jdb/core.el | 10 ++- realgud/debugger/jdb/file.el | 13 ++++ realgud/debugger/jdb/init.el | 12 ++- realgud/debugger/jdb/jdb.el | 10 ++- realgud/debugger/jdb/track-mode.el | 12 ++- realgud/debugger/kshdb/core.el | 10 ++- realgud/debugger/kshdb/init.el | 12 ++- realgud/debugger/kshdb/kshdb.el | 10 ++- realgud/debugger/nodejs/nodejs.el | 14 +--- realgud/debugger/pdb/core.el | 11 +-- realgud/debugger/perldb/core.el | 10 ++- realgud/debugger/perldb/perldb.el | 10 ++- realgud/debugger/rdebug/core.el | 10 ++- realgud/debugger/rdebug/init.el | 12 ++- realgud/debugger/rdebug/rdebug.el | 10 ++- realgud/debugger/rdebug/track-mode.el | 10 ++- realgud/debugger/remake/core.el | 10 ++- realgud/debugger/remake/track-mode.el | 10 ++- realgud/debugger/trepan.pl/backtrack-mode.el | 9 ++- realgud/debugger/trepan.pl/core.el | 10 ++- realgud/debugger/trepan.pl/track-mode.el | 12 ++- realgud/debugger/trepan.pl/trepanpl.el | 10 ++- realgud/debugger/trepan/core.el | 10 ++- realgud/debugger/trepan/track-mode.el | 15 +++- realgud/debugger/trepan/trepan.el | 15 +++- realgud/debugger/trepan2/init.el | 10 +-- realgud/debugger/trepan2/trepan2.el | 11 +-- realgud/debugger/trepan3k/trepan3k.el | 11 +-- realgud/debugger/zshdb/core.el | 10 ++- realgud/debugger/zshdb/track-mode.el | 10 ++- realgud/debugger/zshdb/zshdb.el | 10 ++- realgud/lang/perl.el | 10 ++- realgud/lang/ruby.el | 12 ++- 50 files changed, 452 insertions(+), 212 deletions(-) diff --git a/.gitignore b/.gitignore index 9b78308..125299c 100644 --- a/.gitignore +++ b/.gitignore @@ -12,9 +12,11 @@ /configure /configure.lineno /elpa +/how-to-make-a-release.txt /install-sh /missing /node_modules +/realgud-autoloads.el /test/npm-debug.log /tmp Makefile @@ -22,4 +24,3 @@ Makefile.in elc-stamp elc-temp script -/realgud-autoloads.el diff --git a/Makefile.am b/Makefile.am index 5b85327..e2fcd7a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -47,6 +47,7 @@ install-short: .PHONY: test check check-short rmChangeLog check_copyrights CR_EXCEPTIONS=cr_exceptions.txt +#: Check that copyrights are assigned to FSF check_copyrights: @echo "Compute exceptions >$(CR_EXCEPTIONS)~" @export LC_ALL=C; \ diff --git a/cr_exceptions.txt b/cr_exceptions.txt new file mode 100644 index 0000000..e69de29 diff --git a/el-get-install.el b/el-get-install.el deleted file mode 100644 index 86c55ec..0000000 --- a/el-get-install.el +++ /dev/null @@ -1,104 +0,0 @@ -(eval-when-compile - (defvar el-get-sources) -) - -(declare-function el-get-post-install 'el-get) - -(add-to-list 'load-path "~/.emacs.d/el-get/el-get") - -;;; el-get-install.el --- installer for the lazy -;; -;; Copyright (C) 2010 Dimitri Fontaine -;; -;; Author: Dimitri Fontaine <d...@tapoueh.org> -;; URL: http://www.emacswiki.org/emacs/el-get.el -;; Created: 2010-06-17 -;; Keywords: emacs package elisp install elpa git git-svn bzr cvs apt-get fink http http-tar -;; Licence: WTFPL, grab your copy here: http://sam.zoy.org/wtfpl/ -;; -;; This file is NOT part of GNU Emacs. -;; -;; bootstrap your el-get installation, the goal is then to use el-get to -;; update el-get. -;; -;; So the idea is that you copy/paste this code into your *scratch* buffer, -;; hit C-j, and you have a working el-get. - -(let ((el-get-root - (file-name-as-directory - (or (bound-and-true-p el-get-dir) - (concat (file-name-as-directory user-emacs-directory) "el-get"))))) - - (when (file-directory-p el-get-root) - (add-to-list 'load-path el-get-root)) - - ;; try to require el-get, failure means we have to install it - (unless (require 'el-get nil t) - (unless (file-directory-p el-get-root) - (make-directory el-get-root t)) - - (let* ((package "el-get") - (buf (switch-to-buffer "*el-get bootstrap*")) - (pdir (file-name-as-directory (concat el-get-root package))) - (git (or (executable-find "git") - (error "Unable to find `git'"))) - (url (or (bound-and-true-p el-get-git-install-url) - "http://github.com/dimitri/el-get.git")) - (default-directory el-get-root) - (process-connection-type nil) ; pipe, no pty (--no-progress) - - ;; First clone el-get - (status - (call-process - git nil `(,buf t) t "--no-pager" "clone" "-v" url package))) - - (unless (zerop status) - (error "Couldn't clone el-get from the Git repository: %s" url)) - - ;; switch branch if we have to - (let* ((branch (cond - ;; Check if a specific branch is requested - ((bound-and-true-p el-get-install-branch)) - ;; Check if master branch is requested - ((boundp 'el-get-master-branch) "master") - ;; Read the default branch from the el-get recipe - ((plist-get (with-temp-buffer - (insert-file-contents-literally - (expand-file-name "recipes/el-get.rcp" pdir)) - (read (current-buffer))) - :branch)) - ;; As a last resort, use the master branch - ("master"))) - (remote-branch (format "origin/%s" branch)) - (default-directory pdir) - (bstatus - (if (string-equal branch "master") - 0 - (call-process git nil (list buf t) t "checkout" "-t" remote-branch)))) - (unless (zerop bstatus) - (error "Couldn't `git checkout -t %s`" branch))) - - (add-to-list 'load-path pdir) - (load package) - (let ((el-get-default-process-sync t) ; force sync operations for installer - (el-get-verbose t)) ; let's see it all - (el-get-post-install "el-get")) - (with-current-buffer buf - (goto-char (point-max)) - (insert "\nCongrats, el-get is installed and ready to serve!"))))) - - -(declare-function el-get 'el-get) - -;; now either el-get is `require'd already, or have been `load'ed by the -;; el-get installer. -(setq - el-get-sources - '(el-get ; el-get is self-hosting - loc-changes ; loc marks in buffers - load-relative ; load emacs lisp relative to emacs source - test-simple ; simple test framework - )) - -;; install new packages and init already installed packages -(el-get 'sync '(loc-changes list-utils load-relative test-simple)) diff --git a/etc/screenshot.el b/etc/screenshot.el index e43ee88..ef19a46 100644 --- a/etc/screenshot.el +++ b/etc/screenshot.el @@ -1,5 +1,21 @@ ;;; Prepare a RealGUD screenshot +;; Copyright (C) 2016 Free Software Foundation, Inc + +;; Author: Clément Pit--Claudel + +;; 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/>. ;; Run ‘cask exec emacs -Q -L . -l etc/screenshot.el’ from the project's root to ;; build a screenshot. diff --git a/realgud/common/bp-image-data.el b/realgud/common/bp-image-data.el index 01abaf3..d0aaca3 100644 --- a/realgud/common/bp-image-data.el +++ b/realgud/common/bp-image-data.el @@ -1,4 +1,25 @@ +;; Copyright (C) 2016 Free Software Foundation, Inc + +;; Authors: Clément Pit--Claudel, Nick Roberts <nick...@gnu.org>, +;; 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 +;; (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/>. +;; Run ‘cask exec emacs -Q -L . -l etc/screenshot.el’ from the project's root to +;; build a screenshot. + (require 'load-relative) + (defconst realgud-bp-xpm-data "/* XPM */ static char *magick[] = { diff --git a/realgud/common/buffer/helper.el b/realgud/common/buffer/helper.el index 1c47035..97e73da 100644 --- a/realgud/common/buffer/helper.el +++ b/realgud/common/buffer/helper.el @@ -1,4 +1,17 @@ -;; Copyright (C) 2010, 2014 Rocky Bernstein <ro...@gnu.org> +; Copyright (C) 2010, 2014 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (require 'load-relative) (require-relative-list '("../fringe" "../helper" "../lochist") "realgud-") diff --git a/realgud/common/lang.el b/realgud/common/lang.el index 3d32891..d3b4cb3 100644 --- a/realgud/common/lang.el +++ b/realgud/common/lang.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010, 2012, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2012, 2014-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;;; Programming language specific stuff. (require 'load-relative) diff --git a/realgud/common/lochist.el b/realgud/common/lochist.el index ed61001..33fcf49 100644 --- a/realgud/common/lochist.el +++ b/realgud/common/lochist.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010, 2012, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2012, 2014-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;;; Debugger location ring ;;; Commentary: diff --git a/realgud/common/menu.el b/realgud/common/menu.el index efab31a..2d3209c 100644 --- a/realgud/common/menu.el +++ b/realgud/common/menu.el @@ -1,4 +1,17 @@ -;; Copyright (C) 2010-2011, 2015 Rocky Bernstein <ro...@gnu.org> +; Copyright (C) 2010-2011, 2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;; ------------------------------------------------------------------- ;; Menu support. ;; diff --git a/realgud/common/regexp.el b/realgud/common/regexp.el index 5239adf..127d7c2 100644 --- a/realgud/common/regexp.el +++ b/realgud/common/regexp.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010-2011, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010-2011, 2014-2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;;; FIXME - think of a better name. ;;; ;;; Debugger regular expressions for many kinds of diff --git a/realgud/common/reset.el b/realgud/common/reset.el index c5c06b4..03f734b 100644 --- a/realgud/common/reset.el +++ b/realgud/common/reset.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010, 2014 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2014, 2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;; reset state on quit or restart (require 'load-relative) diff --git a/realgud/common/utils.el b/realgud/common/utils.el index 1f52bed..7be79c5 100644 --- a/realgud/common/utils.el +++ b/realgud/common/utils.el @@ -1,3 +1,16 @@ +;; Copyright (C) 2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. (require 'load-relative) (require 'comint) (require 'eshell) diff --git a/realgud/common/window.el b/realgud/common/window.el index d7d083b..e922094 100644 --- a/realgud/common/window.el +++ b/realgud/common/window.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2014-2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (require 'load-relative) (require-relative-list '("helper") "realgud-") (require-relative-list '("buffer/helper") "realgud-buffer-") diff --git a/realgud/debugger/bashdb/track-mode.el b/realgud/debugger/bashdb/track-mode.el index 7904d25..0e3dfef 100644 --- a/realgud/debugger/bashdb/track-mode.el +++ b/realgud/debugger/bashdb/track-mode.el @@ -1,6 +1,6 @@ -;; Copyright (C) 2015 Free Software Foundation, Inc +;; Copyright (C) 2012-2016 Free Software Foundation, Inc -;; Author: Rocky Bernstein <ro...@gnu.org> +;; Author: 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 @@ -12,9 +12,7 @@ ;; 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) 2012-2015 Rocky Bernstein <ro...@gnu.org> +;; Author: Rocky Bernstein <ro...@gnu.org> ;; Bash Debugger tracking in a comint or eshell buffer. diff --git a/realgud/debugger/gub/core.el b/realgud/debugger/gub/core.el index a2a63d5..12dc8ff 100644 --- a/realgud/debugger/gub/core.el +++ b/realgud/debugger/gub/core.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2013-2014 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2013-2014 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (eval-when-compile (require 'cl)) (require 'load-relative) diff --git a/realgud/debugger/gub/track-mode.el b/realgud/debugger/gub/track-mode.el index f926916..3f74cbc 100644 --- a/realgud/debugger/gub/track-mode.el +++ b/realgud/debugger/gub/track-mode.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2013-2016 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2013-2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;;; Golang SSA gub tracking a comint buffer. (eval-when-compile (require 'cl)) diff --git a/realgud/debugger/ipdb/core.el b/realgud/debugger/ipdb/core.el index 1bd3b46..789920b 100644 --- a/realgud/debugger/ipdb/core.el +++ b/realgud/debugger/ipdb/core.el @@ -1,21 +1,15 @@ ;; Copyright (C) 2016 Free Software Foundation, Inc -;; Author: Rocky Bernstein <ro...@gnu.org> -;; Author: Sean Farley <s...@farley.io> +;; Author: Sean Farley <s...@farley.io>, Rocky Bernstein (ro...@gnu.org) ;; 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 <ro...@gnu.org> +;; along with this program. If not, see <http://www.gnu.or/licenses/>. + (eval-when-compile (require 'cl)) diff --git a/realgud/debugger/jdb/core.el b/realgud/debugger/jdb/core.el index 5fd2d61..f4c35d2 100644 --- a/realgud/debugger/jdb/core.el +++ b/realgud/debugger/jdb/core.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2014 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2014 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (eval-when-compile (require 'cl)) ;; We use gud to handle the classpath-to-filename mapping diff --git a/realgud/debugger/jdb/file.el b/realgud/debugger/jdb/file.el index 635d844..388478a 100644 --- a/realgud/debugger/jdb/file.el +++ b/realgud/debugger/jdb/file.el @@ -1,3 +1,16 @@ +;; Copyright (C) 2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. ;; Association list of fully qualified class names (package + class name) ;; and their source files. (defvar gud-jdb-class-source-alist nil diff --git a/realgud/debugger/jdb/init.el b/realgud/debugger/jdb/init.el index 37ea2a8..185edab 100644 --- a/realgud/debugger/jdb/init.el +++ b/realgud/debugger/jdb/init.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2014-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (eval-when-compile (require 'cl)) (require 'load-relative) @@ -196,7 +204,7 @@ backtrace listing.") ;; this debugger (setf (gethash "jdb" realgud:variable-basename-hash) "realgud:jdb") - + (setf (gethash "backtrace" realgud:jdb-command-hash) "where") diff --git a/realgud/debugger/jdb/jdb.el b/realgud/debugger/jdb/jdb.el index b9ef62a..bb6d41c 100644 --- a/realgud/debugger/jdb/jdb.el +++ b/realgud/debugger/jdb/jdb.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2014-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;; `jdb' Main interface to jdb via Emacs (require 'gud) ;; For class-path and source-path handling diff --git a/realgud/debugger/jdb/track-mode.el b/realgud/debugger/jdb/track-mode.el index ed11913..208b6cf 100644 --- a/realgud/debugger/jdb/track-mode.el +++ b/realgud/debugger/jdb/track-mode.el @@ -1,5 +1,13 @@ -;;; Copyright (C) 2015-2016 Rocky Bernstein <ro...@gnu.org> -;;; Java "jdb" Debugger tracking a comint or eshell buffer. +;; Copyright (C) 2015-2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + +;; Java "jdb" Debugger tracking a comint or eshell buffer. (eval-when-compile (require 'cl)) (require 'load-relative) diff --git a/realgud/debugger/kshdb/core.el b/realgud/debugger/kshdb/core.el index 445dd97..5571583 100644 --- a/realgud/debugger/kshdb/core.el +++ b/realgud/debugger/kshdb/core.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2010, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2014-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (eval-when-compile (require 'cl)) (require 'load-relative) diff --git a/realgud/debugger/kshdb/init.el b/realgud/debugger/kshdb/init.el index f141b75..3f392f1 100644 --- a/realgud/debugger/kshdb/init.el +++ b/realgud/debugger/kshdb/init.el @@ -1,5 +1,13 @@ -;;; Copyright (C) 2010-2011, 2016 Rocky Bernstein <ro...@gnu.org> Regular -;;; expressions for Korn shell debugger: kshdb +;; Copyright (C) 2010-2011, 2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + +;;Regular expressions for Korn shell debugger: kshdb (eval-when-compile (require 'cl)) diff --git a/realgud/debugger/kshdb/kshdb.el b/realgud/debugger/kshdb/kshdb.el index 9c57637..e0f34d9 100644 --- a/realgud/debugger/kshdb/kshdb.el +++ b/realgud/debugger/kshdb/kshdb.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2011, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2011, 2014-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;; `kshdb' Main interface to kshdb via Emacs (require 'load-relative) (require-relative-list '("../../common/helper") "realgud-") diff --git a/realgud/debugger/nodejs/nodejs.el b/realgud/debugger/nodejs/nodejs.el index eddb5c5..7ca4f5c 100644 --- a/realgud/debugger/nodejs/nodejs.el +++ b/realgud/debugger/nodejs/nodejs.el @@ -1,22 +1,12 @@ -;; Copyright (C) 2015 Free Software Foundation, Inc +;; Copyright (C) 2014-2016 Free Software Foundation, Inc -;; Author: Rocky Bernstein <ro...@gnu.org> +;; Author: 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 ;; 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/>. -;;; Regular expressions for nodejs Javascript debugger. -;;; Copyright (C) 2014-2015 Rocky Bernstein <ro...@gnu.org> - ;; `nodejs' Main interface to nodejs debugger via Emacs (require 'load-relative) (require-relative-list '("../../common/helper") "realgud-") diff --git a/realgud/debugger/pdb/core.el b/realgud/debugger/pdb/core.el index 18ad431..8964cf6 100644 --- a/realgud/debugger/pdb/core.el +++ b/realgud/debugger/pdb/core.el @@ -1,4 +1,4 @@ -;; Copyright (C) 2015, 2016 Free Software Foundation, Inc +;; Copyright (C) 2014-2016 Free Software Foundation, Inc ;; Author: Rocky Bernstein <ro...@gnu.org> @@ -7,15 +7,6 @@ ;; 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 <ro...@gnu.org> - (eval-when-compile (require 'cl)) (require 'load-relative) diff --git a/realgud/debugger/perldb/core.el b/realgud/debugger/perldb/core.el index c18b276..2df3533 100644 --- a/realgud/debugger/perldb/core.el +++ b/realgud/debugger/perldb/core.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2011, 2013-2014 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2011, 2013-2014 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (eval-when-compile (require 'cl)) (require 'load-relative) diff --git a/realgud/debugger/perldb/perldb.el b/realgud/debugger/perldb/perldb.el index 049a6b2..7c4b447 100644 --- a/realgud/debugger/perldb/perldb.el +++ b/realgud/debugger/perldb/perldb.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2011, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2011, 2014-2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;; `perldb' Main interface to perl debugger via Emacs (require 'load-relative) (require-relative-list '("../../common/helper") "realgud-") diff --git a/realgud/debugger/rdebug/core.el b/realgud/debugger/rdebug/core.el index 6612a7d..78a5a2d 100644 --- a/realgud/debugger/rdebug/core.el +++ b/realgud/debugger/rdebug/core.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2010, 2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (eval-when-compile (require 'cl)) (require 'load-relative) diff --git a/realgud/debugger/rdebug/init.el b/realgud/debugger/rdebug/init.el index 3eb495b..ec28401 100644 --- a/realgud/debugger/rdebug/init.el +++ b/realgud/debugger/rdebug/init.el @@ -1,5 +1,13 @@ -;;; Copyright (C) 2010, 2011, 2016 Rocky Bernstein <ro...@gnu.org> -;;; Ruby 1.8 debugger: ruby-debug (rdebug) +;; Copyright (C) 2010, 2011, 2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + +;; Ruby 1.8 debugger: ruby-debug (rdebug) (eval-when-compile (require 'cl)) diff --git a/realgud/debugger/rdebug/rdebug.el b/realgud/debugger/rdebug/rdebug.el index 955fe85..253f015 100644 --- a/realgud/debugger/rdebug/rdebug.el +++ b/realgud/debugger/rdebug/rdebug.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2010-2011, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010-2011, 2014-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;; `rdebug' Main interface to rdebug via Emacs (require 'load-relative) (require-relative-list '("../../common/helper" diff --git a/realgud/debugger/rdebug/track-mode.el b/realgud/debugger/rdebug/track-mode.el index 61afa3f..142836f 100644 --- a/realgud/debugger/rdebug/track-mode.el +++ b/realgud/debugger/rdebug/track-mode.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2010, 2012, 2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2012, 2015, 2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;;; Ruby "rdebug" Debugger tracking a comint or eshell buffer. (eval-when-compile (require 'cl)) diff --git a/realgud/debugger/remake/core.el b/realgud/debugger/remake/core.el index a755726..cb78f55 100644 --- a/realgud/debugger/remake/core.el +++ b/realgud/debugger/remake/core.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2011, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2011, 2014-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (eval-when-compile (require 'cl)) (require 'load-relative) diff --git a/realgud/debugger/remake/track-mode.el b/realgud/debugger/remake/track-mode.el index 8fae564..50829a9 100644 --- a/realgud/debugger/remake/track-mode.el +++ b/realgud/debugger/remake/track-mode.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2012, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2012, 2014-2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;;; GNU Make Debugger tracking a comint buffer. (eval-when-compile (require 'cl)) diff --git a/realgud/debugger/trepan.pl/backtrack-mode.el b/realgud/debugger/trepan.pl/backtrack-mode.el index 97dfff4..7340c6f 100644 --- a/realgud/debugger/trepan.pl/backtrack-mode.el +++ b/realgud/debugger/trepan.pl/backtrack-mode.el @@ -1,4 +1,11 @@ -;;; Copyright (C) 2011, 2014 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2011, 2014 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. ;;; Mode for parsing various kinds of backtraces found in Perl diff --git a/realgud/debugger/trepan.pl/core.el b/realgud/debugger/trepan.pl/core.el index a5c90e7..acd7e13 100644 --- a/realgud/debugger/trepan.pl/core.el +++ b/realgud/debugger/trepan.pl/core.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2011-2012, 2014 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2011-2012, 2014 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (eval-when-compile (require 'cl)) (require 'load-relative) diff --git a/realgud/debugger/trepan.pl/track-mode.el b/realgud/debugger/trepan.pl/track-mode.el index 3fe2f09..9140c56 100644 --- a/realgud/debugger/trepan.pl/track-mode.el +++ b/realgud/debugger/trepan.pl/track-mode.el @@ -1,5 +1,13 @@ -;;; Copyright (C) 2011-2014 Rocky Bernstein <ro...@gnu.org> -;;; Perl trepanning Debugger tracking a comint buffer. +;; Copyright (C) 2011-2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + +;; Perl trepanning Debugger tracking a comint buffer. (eval-when-compile (require 'cl)) (require 'load-relative) diff --git a/realgud/debugger/trepan.pl/trepanpl.el b/realgud/debugger/trepan.pl/trepanpl.el index de8cb20..0b4ac32 100644 --- a/realgud/debugger/trepan.pl/trepanpl.el +++ b/realgud/debugger/trepan.pl/trepanpl.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2011, 2014 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2011, 2014, 2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;; `trepanpl' Main interface to trepanpl via Emacs (require 'load-relative) (require-relative-list '("../../common/helper") "realgud-") diff --git a/realgud/debugger/trepan/core.el b/realgud/debugger/trepan/core.el index 269af1e..07764a0 100644 --- a/realgud/debugger/trepan/core.el +++ b/realgud/debugger/trepan/core.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2010, 2012, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2012, 2014-2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (eval-when-compile (require 'cl)) (require 'compile) ;; for compilation-find-file diff --git a/realgud/debugger/trepan/track-mode.el b/realgud/debugger/trepan/track-mode.el index b4b2ddf..2887c3e 100644 --- a/realgud/debugger/trepan/track-mode.el +++ b/realgud/debugger/trepan/track-mode.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010, 2012-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2012-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;;; Ruby "trepan" Debugger tracking a comint or eshell buffer. (eval-when-compile (require 'cl)) diff --git a/realgud/debugger/trepan/trepan.el b/realgud/debugger/trepan/trepan.el index b62417d..b02aef0 100644 --- a/realgud/debugger/trepan/trepan.el +++ b/realgud/debugger/trepan/trepan.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010-2011, 2013-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010-2011, 2013-2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;; `trepan' Main interface to trepan via Emacs (require 'load-relative) (require-relative-list '("../../common/helper") "realgud-") diff --git a/realgud/debugger/trepan2/init.el b/realgud/debugger/trepan2/init.el index 0806858..235e47d 100644 --- a/realgud/debugger/trepan2/init.el +++ b/realgud/debugger/trepan2/init.el @@ -1,4 +1,4 @@ -;; Copyright (C) 2010-2012, 2014-2015 Software Foundation, Inc +;; Copyright (C) 2010-2012, 2014-2016 Free Software Foundation, Inc ;; Author: Rocky Bernstein <ro...@gnu.org> @@ -7,14 +7,6 @@ ;; 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/>. - ;; trepan2: Python 2.5 - 2.7; for 3.0+ see trepan3k (eval-when-compile (require 'cl)) diff --git a/realgud/debugger/trepan2/trepan2.el b/realgud/debugger/trepan2/trepan2.el index 4dae9cd..84bfd47 100644 --- a/realgud/debugger/trepan2/trepan2.el +++ b/realgud/debugger/trepan2/trepan2.el @@ -1,4 +1,4 @@ -;; Copyright (C) 2010-2012, 2014-2015 Software Foundation, Inc +;; Copyright (C) 2010-2012, 2014-2016 Free Software Foundation, Inc ;; Author: Rocky Bernstein <ro...@gnu.org> @@ -7,15 +7,6 @@ ;; 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/>. - -;; trepan2: Python 2.5 - 2.7 for 3.0+ see trepan3k ;; Main interface to trepan2 via Emacs (require 'load-relative) diff --git a/realgud/debugger/trepan3k/trepan3k.el b/realgud/debugger/trepan3k/trepan3k.el index fb2ff7b..69682ed 100644 --- a/realgud/debugger/trepan3k/trepan3k.el +++ b/realgud/debugger/trepan3k/trepan3k.el @@ -1,4 +1,4 @@ -;; Copyright (C) 2010-2014, 2016 Software Foundation, Inc +;; Copyright (C) 2010-2014, 2016 Free Software Foundation, Inc ;; Author: Rocky Bernstein <ro...@gnu.org> @@ -7,15 +7,6 @@ ;; 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 'load-relative) (require-relative-list '("../../common/helper") "realgud-") (require-relative-list '("../../common/run") "realgud:") diff --git a/realgud/debugger/zshdb/core.el b/realgud/debugger/zshdb/core.el index b07423a..e8c5a6e 100644 --- a/realgud/debugger/zshdb/core.el +++ b/realgud/debugger/zshdb/core.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2010-2011, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010-2011, 2014-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + (eval-when-compile (require 'cl)) (require 'load-relative) diff --git a/realgud/debugger/zshdb/track-mode.el b/realgud/debugger/zshdb/track-mode.el index 9df126f..31f65dc 100644 --- a/realgud/debugger/zshdb/track-mode.el +++ b/realgud/debugger/zshdb/track-mode.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2012, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2012, 2014-2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;;; "zshdb" Debugger tracking a comint buffer. (eval-when-compile (require 'cl)) diff --git a/realgud/debugger/zshdb/zshdb.el b/realgud/debugger/zshdb/zshdb.el index db02985..2b07cc1 100644 --- a/realgud/debugger/zshdb/zshdb.el +++ b/realgud/debugger/zshdb/zshdb.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2011, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2011, 2014-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;; `zshdb' Main interface to zshdb via Emacs (require 'load-relative) (require-relative-list '("../../common/helper") "realgud-") diff --git a/realgud/lang/perl.el b/realgud/lang/perl.el index 41a1760..ebe6b94 100644 --- a/realgud/lang/perl.el +++ b/realgud/lang/perl.el @@ -1,4 +1,12 @@ -;;; Copyright (C) 2011, 2014 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2011, 2014, 2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + ;;; Common Perl constants and regular expressions. (eval-when-compile (require 'cl)) diff --git a/realgud/lang/ruby.el b/realgud/lang/ruby.el index 6c11cc4..a0e38d7 100644 --- a/realgud/lang/ruby.el +++ b/realgud/lang/ruby.el @@ -1,5 +1,13 @@ -;;; Copyright (C) 2010, 2014 Rocky Bernstein <ro...@gnu.org> -;;; Common Ruby constants and regular expressions. +;; Copyright (C) 2010, 2014 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; 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. + +;; Common Ruby constants and regular expressions. (eval-when-compile (require 'cl)) (require 'load-relative)