From 1f98d0713e2e7801e6aac1dd9b8485a1c2530f37 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 23 Apr 1996 22:24:05 +0000 Subject: [PATCH] Change M-x manual-entry to use same naming convention for buffers that Emacs 19 uses. --- v7/src/edwin/manual.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/v7/src/edwin/manual.scm b/v7/src/edwin/manual.scm index 28ed5f52a..bafe50771 100644 --- a/v7/src/edwin/manual.scm +++ b/v7/src/edwin/manual.scm @@ -1,8 +1,8 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: manual.scm,v 1.11 1992/11/13 22:22:45 cph Exp $ +;;; $Id: manual.scm,v 1.12 1996/04/23 22:24:05 cph Exp $ ;;; -;;; Copyright (c) 1991-92 Massachusetts Institute of Technology +;;; Copyright (c) 1991-96 Massachusetts Institute of Technology ;;; ;;; This material was developed by the Scheme project at the ;;; Massachusetts Institute of Technology, Department of @@ -74,10 +74,10 @@ where SECTION is the desired section of the manual, as in `tty(4)'." (if (ref-variable manual-entry-reuse-buffer?) "*Manual-Entry*" (string-append - "*" + "*Man " topic (if section (string-append "(" section ")") "") - "-Manual-Entry*")))) + "*")))) (let ((buffer (temporary-buffer buffer-name))) (disable-group-undo! (buffer-group buffer)) (message "Invoking man " -- 2.25.1