summaryrefslogtreecommitdiff
path: root/debian-bug.el
diff options
context:
space:
mode:
authorpsg <>2003-11-09 23:59:57 +0000
committerpsg <>2003-11-09 23:59:57 +0000
commit679774aab3f55307708be1de3576f63aa7472079 (patch)
tree23086c19e20c73622d4d4b1a1c8dc323bf531b25 /debian-bug.el
parentb5ac1cbd4377ab0935c8ee893c14d4e1968b6731 (diff)
debian-bug.el bug fix: "M-x debian-bug prompt doesn't work correctly
in XEmacs21", thanks to Kenshi Muto for reporting (Closes: #219811).
Diffstat (limited to 'debian-bug.el')
-rw-r--r--debian-bug.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/debian-bug.el b/debian-bug.el
index a7b4fb6..ceae676 100644
--- a/debian-bug.el
+++ b/debian-bug.el
@@ -1844,7 +1844,10 @@ Call this function from the mode setup with MINOR-MODE-MAP."
(read-char-exclusive)))))
(cond
((or (equal 13 type) ; <CR>
+ (equal ?\r type) ; <CR>
+ (equal ?\ type) ; <space>
(equal 32 type) ; <space>
+ (equal ?p type)
(equal ?P type))
(debian-bug-package))
((equal ?F type)