From: Chris Hanson Date: Thu, 1 Apr 1993 23:37:28 +0000 (+0000) Subject: Add M-x show-parameter-list to Scheme mode as M-A. X-Git-Tag: 20090517-FFI~8393 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=4aa1e261bf29d8bb72394584d415a863365c804b;p=mit-scheme.git Add M-x show-parameter-list to Scheme mode as M-A. --- 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