aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/ps-mode.el
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>1999-11-10 22:14:06 +0000
committerGerd Moellmann <[email protected]>1999-11-10 22:14:06 +0000
commitaebf9ad1d25132d1d8293555b9fdaccf25937398 (patch)
tree3bd5ccfcd5e644edb20e57040d7fc7d74452337d /lisp/progmodes/ps-mode.el
parentbfd2209f52ae013e4cbe18b56e66b64fcde8a5ed (diff)
(ps-mode-maintainer-address): New constant.
(ps-mode-submit-bug-report): New function. Entry added to menu.
Diffstat (limited to 'lisp/progmodes/ps-mode.el')
-rw-r--r--lisp/progmodes/ps-mode.el19
1 files changed, 17 insertions, 2 deletions
diff --git a/lisp/progmodes/ps-mode.el b/lisp/progmodes/ps-mode.el
index 82e31226dd..1167d852a5 100644
--- a/lisp/progmodes/ps-mode.el
+++ b/lisp/progmodes/ps-mode.el
@@ -5,7 +5,7 @@
;; Author: Peter Kleiweg <[email protected]>
;; Maintainer: Peter Kleiweg <[email protected]>
;; Created: 20 Aug 1997
-;; Version: 1.1c, 5 Nov 1999
+;; Version: 1.1d, 9 Nov 1999
;; Keywords: PostScript, languages
;; This file is part of GNU Emacs.
@@ -30,7 +30,8 @@
;;; Code:
-(defconst ps-mode-version "1.1c, 5 Nov 1999")
+(defconst ps-mode-version "1.1d, 9 Nov 1999")
+(defconst ps-mode-maintainer-address "Peter Kleiweg <[email protected]>")
(require 'easymenu)
@@ -394,6 +395,10 @@ If nil, the following are tried in turn, until success:
"---"
["Customize for PostScript"
(customize-group "PostScript")
+ t]
+ "---"
+ ["Submit Bug Report"
+ ps-mode-submit-bug-report
t]))
@@ -535,6 +540,16 @@ Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number
(interactive)
(message " *** PostScript Mode (ps-mode) Version %s *** " ps-mode-version))
+(defun ps-mode-submit-bug-report ()
+ "Submit via mail a bug report on PostScript mode"
+ (interactive)
+ (when (y-or-n-p "Submit bug report on PostScript mode? ")
+ (let ((reporter-prompt-for-summary-p nil))
+ (reporter-submit-bug-report
+ ps-mode-maintainer-address
+ (concat "ps-mode.el " ps-mode-version)
+ nil))))
+
;; Helper functions for font-lock.