diff options
author | psg <> | 2004-07-21 17:35:23 +0000 |
---|---|---|
committer | psg <> | 2004-07-21 17:35:23 +0000 |
commit | aea82461e7cfdf3e68c5e452f615e0160e8c9ec9 (patch) | |
tree | 4aadadb26294a4a543e5f81c7ef251ae2d28af32 | |
parent | 138ba8856fd7968dd4fdd127150ce7c300268ee2 (diff) |
debian-el.el: Bug fix: "debian-el: Add udeb support to debview", thanks to
Frédéric Bothamy for the suggestion and patch (Closes: #260273).
-rw-r--r-- | debian-el.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debian-el.el b/debian-el.el index 8348805..826c8aa 100644 --- a/debian-el.el +++ b/debian-el.el @@ -48,7 +48,8 @@ :group 'debian-el) ;; deb-view.el -(setq auto-mode-alist (append '(("\\.deb$" . deb-view-mode)) auto-mode-alist)) +(setq auto-mode-alist + (append '(("\\.u?deb$" . deb-view-mode)) auto-mode-alist)) (defgroup deb-view nil "View Debian package files with tar-mode" :group 'tools |