1 ;;; -*- Mode: Lisp; Package: Maxima; Syntax: Common-Lisp; Base: 10 -*- ;;;;
2 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3 ;;; The data in this file contains enhancments. ;;;;;
5 ;;; Copyright (c) 1984,1987 by William Schelter,University of Texas ;;;;;
6 ;;; All rights reserved ;;;;;
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
11 ;; Maclisp compatibility definitions.
12 ;; This file is for Lisp differences only. No knowledge of Macsyma should be
13 ;; contained in this file.
17 (defun symbolconc (&rest args
)
18 "make a symbol out of the printed representations of all args"
19 (intern (apply #'concatenate
'string
22 (integer (format nil
"~d" s
))
23 (symbol (symbol-name s
))
25 (t (format nil
"~a" s
))))