/usr/share/emacs/site-lisp/dpkg-dev-el/debian-copyright.el is in dpkg-dev-el 35.12ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | ;;; debian-copyright.el --- Major mode for Debian package copyright files
;; Copyright 2002, 2003 Junichi Uekawa.
;; This file 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 2, or (at your option)
;; any later version.
;;
;; debian-copyright.el 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 your Debian installation, in /usr/share/common-licenses/GPL
;; If not, write to the Free Software Foundation, 675 Mass Ave,
;; Cambridge, MA 02139, USA.
(require 'debian-changelog-mode)
;;; Code:
(defgroup debian-copyright nil "Debian copyright mode"
:group 'tools
:prefix "debian-copyright-")
(defcustom debian-copyright-mode-load-hook nil
"*Hooks that are run when `debian-copyright-mode' is loaded."
:group 'debian-copyright
:type 'hook)
(defcustom debian-copyright-mode-hook nil
"Normal hook run when entering Debian Copyright mode."
:group 'debian-copyright
:type 'hook
:options '(turn-on-auto-fill flyspell-mode))
(defconst debian-copyright-mode-version "$Id: debian-copyright.el,v 1.5 2010-07-28 15:33:45 psg Exp $" "Version of debian copyright mode.")
(defvar debian-copyright-mode-map nil
"Keymap for debian/copyright mode.")
(defvar debian-copyright-mode-syntax-table nil
"Syntax table for debian/copyright mode.")
(defvar debian-copyright-font-lock-keywords nil
"Regexps to highlight in font-lock.")
(if debian-copyright-mode-syntax-table
() ; Do not change the table if it is already set up.
(setq debian-copyright-mode-syntax-table (make-syntax-table))
(modify-syntax-entry ?\" ". " debian-copyright-mode-syntax-table)
(modify-syntax-entry ?\\ ". " debian-copyright-mode-syntax-table)
(modify-syntax-entry ?' "w " debian-copyright-mode-syntax-table))
;;;###autoload
(defun debian-copyright-mode ()
"Mode to edit and read debian/copyright.
\\{debian-copyright-mode-map}"
(interactive)
(kill-all-local-variables)
(setq major-mode 'debian-copyright-mode)
(setq mode-name "debian/copyright")
(mapcar 'make-local-variable '(font-lock-defaults write-file-hooks))
(use-local-map debian-copyright-mode-map)
(set-syntax-table debian-copyright-mode-syntax-table)
(if (or (not (featurep 'goto-addr))
(not goto-address-highlight-p))
(setq debian-copyright-font-lock-keywords
'(("http:.*$" . font-lock-function-name-face)
("ftp:.*$" . font-lock-function-name-face)
("^Copyright:$" . font-lock-keyword-face)))
(setq debian-copyright-font-lock-keywords
'(("^Copyright:$" . font-lock-keyword-face)))
(goto-address))
(setq font-lock-defaults
'(debian-copyright-font-lock-keywords
nil ;keywords-only
nil ;case-fold
() ;syntax-alist
))
(run-hooks 'debian-copyright-mode-hook))
;;;###autoload
(add-to-list 'auto-mode-alist
'("debian/.*copyright\\'" . debian-copyright-mode))
;;;###autoload
(add-to-list 'auto-mode-alist
'("\\`/usr/share/doc/.*/copyright" . debian-copyright-mode))
(run-hooks 'debian-copyright-mode-load-hook)
(provide 'debian-copyright)
;;; debian-copyright.el ends here
|