From ef92f83b818ba3cfee138186c4cad9439270dc6c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 26 Dec 1993 07:56:21 +0000 Subject: (lm-report-bug): Don't crash if version is nil. --- lisp/emacs-lisp/lisp-mnt.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lisp/emacs-lisp/lisp-mnt.el') 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 @@ ;; Author: Eric S. Raymond ;; Maintainer: Eric S. Raymond ;; 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.")))) -- cgit v1.2.3