Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
aebf9ad1
Commit
aebf9ad1
authored
Nov 10, 1999
by
Gerd Moellmann
Browse files
(ps-mode-maintainer-address): New constant.
(ps-mode-submit-bug-report): New function. Entry added to menu.
parent
bfd2209f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
lisp/progmodes/ps-mode.el
lisp/progmodes/ps-mode.el
+17
-2
No files found.
lisp/progmodes/ps-mode.el
View file @
aebf9ad1
...
...
@@ -5,7 +5,7 @@
;; Author: Peter Kleiweg <kleiweg@let.rug.nl>
;; Maintainer: Peter Kleiweg <kleiweg@let.rug.nl>
;; Created: 20 Aug 1997
;; Version: 1.1
c
,
5
Nov 1999
;; Version: 1.1
d
,
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 <kleiweg@let.rug.nl>"
)
(
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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment