# HG changeset patch # User Richard M. Stallman # Date 756892581 0 # Node ID 98efb3231d813dd6f438efb2bb31c1d4eb325735 # Parent b36dfc938ba4c21cf65f512b5bca26f21f39ab61 (lm-report-bug): Don't crash if version is nil. diff -r b36dfc938ba4 -r 98efb3231d81 lisp/emacs-lisp/lisp-mnt.el --- a/lisp/emacs-lisp/lisp-mnt.el Sun Dec 26 07:08:08 1993 +0000 +++ b/lisp/emacs-lisp/lisp-mnt.el Sun Dec 26 07:56:21 1993 +0000 @@ -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 @@ (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."))))