tag 731105 + patch thanks Hi,
Here's a patch to fix this issue: Index: elisp/dpkg-dev-el/debian-changelog-mode.el =================================================================== RCS file: /cvs/pkg-goodies-el/emacs-goodies-el/elisp/dpkg-dev-el/debian-changelog-mode.el,v retrieving revision 1.44 diff -u -r1.44 debian-changelog-mode.el --- elisp/dpkg-dev-el/debian-changelog-mode.el 15 Oct 2011 19:35:24 -0000 1.44 +++ elisp/dpkg-dev-el/debian-changelog-mode.el 2 Dec 2013 13:08:19 -0000 @@ -345,6 +345,8 @@ ;; Fix typo (Closes: #580818) ;; V1.94 28Jul2010 Kevin Ryde <use...@zip.com.au> ;; Simplify auto-mode-alist (Closes: #587924) +;; V1.95 01Dec2013 Matt Kraai <kr...@debian.org> +;; Change the default urgency to medium (Closes: #731105) ;; ;;; Acknowledgements: (These people have contributed) ;; Roland Rosenfeld <rol...@debian.org> @@ -965,8 +967,8 @@ (version (or (debian-changelog-suggest-version) (read-string "New version (including any revision): ")))) (if (debian-changelog-experimental-p) - (insert pkg-name " (" version ") experimental; urgency=low\n\n * ") - (insert pkg-name " (" version ") " (car debian-changelog-allowed-distributions) "; urgency=low\n\n * ")) + (insert pkg-name " (" version ") experimental; urgency=medium\n\n * ") + (insert pkg-name " (" version ") " (car debian-changelog-allowed-distributions) "; urgency=medium\n\n * ")) (run-hooks 'debian-changelog-add-version-hook) (save-excursion (insert "\n\n --\n\n")))) @@ -1446,7 +1448,7 @@ (defvar debian-changelog-font-lock-keywords-1 (list - ;; package name line: pkg (1.0-1) unstable; urgency=low + ;; package name line: pkg (1.0-1) unstable; urgency=medium '(debian-changelog-fontify-version (1 font-lock-function-name-face) (2 font-lock-type-face nil t) -- Matt P.S. apt-get source says that emacs-goodies-el's source code can be found in CVS, but the latest version in CVS is 35.6, whereas the latest version in the archive is 35.8. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org