From: Chris Hanson Date: Wed, 25 Aug 1993 02:32:59 +0000 (+0000) Subject: Fix "N" interactive argument letter so that it converts the command X-Git-Tag: 20090517-FFI~7986 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=100e69a9458cd1cd2598d8c65a44ab5ac15661d3;p=mit-scheme.git Fix "N" interactive argument letter so that it converts the command argument to a numeric value. --- diff --git a/v7/src/edwin/comred.scm b/v7/src/edwin/comred.scm index 63e15a562..2f7db36cc 100644 --- a/v7/src/edwin/comred.scm +++ b/v7/src/edwin/comred.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: comred.scm,v 1.104 1993/08/19 22:43:36 cph Exp $ +;;; $Id: comred.scm,v 1.105 1993/08/25 02:32:59 cph Exp $ ;;; ;;; Copyright (c) 1986, 1989-93 Massachusetts Institute of Technology ;;; @@ -425,7 +425,9 @@ ((#\n) (prompting (prompt-for-number prompt false))) ((#\N) - (prefix (or (command-argument) (prompt-for-number prompt false)))) + (prefix + (or (command-argument-value (command-argument)) + (prompt-for-number prompt false)))) ((#\p) (prefix (or (command-argument-value (command-argument)) 1))) ((#\P)