aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-12-26 07:56:21 +0000
committerRichard M. Stallman1993-12-26 07:56:21 +0000
commitef92f83b818ba3cfee138186c4cad9439270dc6c (patch)
treeaa4ac9b69a92f58aa1fe12da0496e69e5342a4f1
parent307feb1fd5a119fd65fcee84f33e89aa8df4d439 (diff)
downloademacs-ef92f83b818ba3cfee138186c4cad9439270dc6c.tar.gz
emacs-ef92f83b818ba3cfee138186c4cad9439270dc6c.zip
(lm-report-bug): Don't crash if version is nil.
-rw-r--r--lisp/emacs-lisp/lisp-mnt.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp-mnt.el b/lisp/emacs-lisp/lisp-mnt.el
index 030575c2119..f97d25a6f32 100644
--- a/lisp/emacs-lisp/lisp-mnt.el
+++ b/lisp/emacs-lisp/lisp-mnt.el
@@ -5,7 +5,7 @@
5;; Author: Eric S. Raymond <esr@snark.thyrsus.com> 5;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6;; Maintainer: Eric S. Raymond <esr@snark.thyrsus.com> 6;; Maintainer: Eric S. Raymond <esr@snark.thyrsus.com>
7;; Created: 14 Jul 1992 7;; Created: 14 Jul 1992
8;; Version: $Id: lisp-mnt.el,v 1.4 1993/07/26 18:40:03 rms Exp friedman $ 8;; Version: $Id: lisp-mnt.el,v 1.5 1993/12/22 12:06:54 friedman Exp rms $
9;; Keywords: docs 9;; Keywords: docs
10;; X-Bogus-Bureaucratic-Cruft: Gruad will get you if you don't watch out! 10;; X-Bogus-Bureaucratic-Cruft: Gruad will get you if you don't watch out!
11 11
@@ -425,7 +425,7 @@ Prompts for bug subject. Leaves you in a mail buffer."
425 (goto-char (point-max)) 425 (goto-char (point-max))
426 (insert "\nIn " 426 (insert "\nIn "
427 package 427 package
428 (and version (concat " version " version)) 428 (if version (concat " version " version) "")
429 "\n\n") 429 "\n\n")
430 (message 430 (message
431 (substitute-command-keys "Type \\[mail-send] to send bug report.")))) 431 (substitute-command-keys "Type \\[mail-send] to send bug report."))))