home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / usr.bin / lisp / lispnews / text0215.txt < prev    next >
Encoding:
Text File  |  1985-11-10  |  776 b   |  31 lines

  1. To get Flavors working in Opus 38.91 you will need to fix a bug in
  2. lisplib/hash.l.  Change all occurances of "getlength" to "vsize".
  3.  
  4. Although unrelated to Flavors, there are several problems with
  5. the functions, fillarray fillarrayarray and listarray in
  6. lisplib/array.l.  Here is an ed script produced by diff:
  7.  
  8. 285,286c
  9.            (cond ((or (arrayp arr)        ; KRA
  10.               (and (symbolp arr) (arrayp (setq arr (getd arr))))))
  11. .
  12. 282,283c
  13.     (lexpr (n)
  14.        (prog (arr size typ ret newv)
  15. .
  16. 280a
  17. ; KRA 83-11-2:  Arrays need not be symbols.
  18. .
  19. 279c
  20.             (replace (arrayref arrto i) (arrayref arrfrom i)))
  21.         (return arrto))))    ; KRA
  22. .
  23. 270c
  24.             (cond ((cdr ls) (setq ls (cdr ls)))))
  25.         (return arr))))        ; KRA
  26. .
  27. 244a
  28. ; KRA 83-11-2:  Fillarray  and fillarrayarray should return the array!
  29. .
  30.  
  31.