Skip to content

Commit

Permalink
Administrivia
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Apr 29, 2015
1 parent 03ecacd commit a016c6f
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 6 deletions.
4 changes: 0 additions & 4 deletions realgud/common/buffer/backtrace.el
@@ -1,10 +1,6 @@
;;; Backtrace buffer

;; Author: Rocky Bernstein <rocky@gnu.org>
;; Version: 1.1
;; Keywords: internal
;; URL: http://github.com/rocky/emacs-load-relative
;; Compatibility: GNU Emacs 24.x

;; Copyright (C) 2015 Free Software Foundation, Inc

Expand Down
21 changes: 20 additions & 1 deletion realgud/debugger/gub/gub.el
@@ -1,9 +1,28 @@
;;; Copyright (C) 2013-2015 Rocky Bernstein <rocky@gnu.org>
;; Copyright (C) 2015 Free Software Foundation, Inc
;; Author: Rocky Bernstein <rocky@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/>.

;; `gub' Main interface to Go gub via Emacs
(require 'load-relative)
(require-relative-list '("../../common/helper") "realgud-")
(require-relative-list '("../../common/track") "realgud-")
(require-relative-list '("core" "track-mode") "realgud:gub-")

(eval-when-compile (require 'cl-lib))

;; This is needed, or at least the docstring part of it is needed to
;; get the customization menu to work in Emacs 24.
(defgroup realgud:gub nil
Expand Down
20 changes: 19 additions & 1 deletion realgud/debugger/remake/remake.el
@@ -1,4 +1,20 @@
;;; Copyright (C) 2011, 2013-2015 Rocky Bernstein <rocky@gnu.org>
;; Copyright (C) 2015 Free Software Foundation, Inc

;; Author: Rocky Bernstein <rocky@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/>.

;; `remake' Main interface to remake via Emacs
(require 'load-relative)
(require-relative-list '("../../common/helper") "realgud-")
Expand All @@ -13,6 +29,8 @@
:group 'make
:version "24.1")

(eval-when-compile (require 'cl-lib))

(declare-function remake-query-cmdline 'realgud:remake-core)
(declare-function remake-parse-cmd-args 'realgud:remake-core)
(declare-function realgud:run-debugger 'realgud:run)
Expand Down

0 comments on commit a016c6f

Please sign in to comment.