From 4aa1e261bf29d8bb72394584d415a863365c804b Mon Sep 17 00:00:00 2001 From: Chris Hanson <org/chris-hanson/cph> Date: Thu, 1 Apr 1993 23:37:28 +0000 Subject: [PATCH] Add M-x show-parameter-list to Scheme mode as M-A. --- v7/src/edwin/schmod.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/edwin/schmod.scm b/v7/src/edwin/schmod.scm index 20f903d59..c31226cd2 100644 --- a/v7/src/edwin/schmod.scm +++ b/v7/src/edwin/schmod.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: schmod.scm,v 1.31 1993/04/01 23:33:28 cph Exp $ +;;; $Id: schmod.scm,v 1.32 1993/04/01 23:37:28 cph Exp $ ;;; ;;; Copyright (c) 1986, 1989-93 Massachusetts Institute of Technology ;;; @@ -339,4 +339,4 @@ Grumbles if PROC is an undocumented primitive." (lambda (name required optional rest body) (append required (if (null? optional) '() `(#!OPTIONAL ,@optional)) - (or rest '()))))))) \ No newline at end of file + (if rest `(#!REST ,rest) '()))))))) \ No newline at end of file -- 2.25.1