From 3082623d014200b05eb4ef93a9ba47c387219efb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 26 Dec 1993 08:02:10 +0000 Subject: (lm-report-bug): lm-maintainer returns a cons; convert it to a string. --- lisp/emacs-lisp/lisp-mnt.el | 8 ++++++-- 1 file changed, 6 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 f97d25a6f32..ad5e78710b8 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.5 1993/12/22 12:06:54 friedman Exp rms $ +;; Version: $Id: lisp-mnt.el,v 1.6 1993/12/26 07:56:21 rms Exp rms $ ;; Keywords: docs ;; X-Bogus-Bureaucratic-Cruft: Gruad will get you if you don't watch out! @@ -421,7 +421,11 @@ Prompts for bug subject. Leaves you in a mail buffer." (let ((package (buffer-name)) (addr (lm-maintainer)) (version (lm-version))) - (mail nil (or addr bug-gnu-emacs) topic) + (mail nil + (if addr + (concat (car addr) " <" (cdr addr) ">") + bug-gnu-emacs) + topic) (goto-char (point-max)) (insert "\nIn " package -- cgit v1.2.3