#| -*-Scheme-*-
-$Id: comman.scm,v 1.80 1999/01/02 06:11:34 cph Exp $
+$Id: comman.scm,v 1.81 1999/11/01 01:05:36 cph Exp $
Copyright (c) 1986, 1989-1999 Massachusetts Institute of Technology
interactive-specification
procedure)
-(define-integrable (%symbol->string sym)
- (system-pair-car sym))
-
(define (command-description command)
(let ((desc (command-%description command)))
(if (string? desc)
desc
- (let ((new (->doc-string (%symbol->string (command-name command))
+ (let ((new (->doc-string (symbol->string (command-name command))
desc)))
(if new
(set-command-%description! command new))
(let ((desc (variable-%description variable)))
(if (string? desc)
desc
- (let ((new (->doc-string (%symbol->string (variable-name variable))
+ (let ((new (->doc-string (symbol->string (variable-name variable))
desc)))
(if new
(set-variable-%description! variable new))