mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-09 21:50:50 +00:00
(lm-report-bug): Don't crash if version is nil.
This commit is contained in:
parent
307feb1fd5
commit
ef92f83b81
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@
|
|||
;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
|
||||
;; Maintainer: Eric S. Raymond <esr@snark.thyrsus.com>
|
||||
;; Created: 14 Jul 1992
|
||||
;; Version: $Id: lisp-mnt.el,v 1.4 1993/07/26 18:40:03 rms Exp friedman $
|
||||
;; Version: $Id: lisp-mnt.el,v 1.5 1993/12/22 12:06:54 friedman Exp rms $
|
||||
;; Keywords: docs
|
||||
;; X-Bogus-Bureaucratic-Cruft: Gruad will get you if you don't watch out!
|
||||
|
||||
|
@ -425,7 +425,7 @@ Prompts for bug subject. Leaves you in a mail buffer."
|
|||
(goto-char (point-max))
|
||||
(insert "\nIn "
|
||||
package
|
||||
(and version (concat " version " version))
|
||||
(if version (concat " version " version) "")
|
||||
"\n\n")
|
||||
(message
|
||||
(substitute-command-keys "Type \\[mail-send] to send bug report."))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue