Changeset 14231
- Timestamp:
- 11/02/12 12:48:20 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/examples/misc/dotabclrc
r14085 r14231 1 1 ;;; -*- Mode: Lisp -*- 2 2 3 ;;; Possible code for inclusion in the Armed Bear startup file #p"~/.abclrc" 3 ;;; Possible code for inclusion in the Armed Bear startup file 4 ;;; #p"~/.abclrc" 5 6 7 ;;; Some commonly useful customizations to ABCL output 8 (setf 9 ;; Truncate the output of java.lang.String object after this many 10 ;; characters, outputing "...." afterwards. 11 ;; The default is 32. Is this too small? 12 *java-object-to-string-length* 8192 13 14 ;; Show what is being loaded and the loading time. 15 ;; Helpful on slower systems to figure out what is taking the time. 16 *load-verbose* t 17 18 ;; Emit warnings from debug code 19 sys:*debug-warn* t 20 21 ;; Bring some order to the forms output by the REPL 22 ;; Not currently the default, but it probably should be after we 23 ;; rework the pretty printer and/or streams to properly work with 24 ;; GRAY-STREAMS: 25 *print-pretty* t) 4 26 5 27 #-quicklisp
Note: See TracChangeset
for help on using the changeset viewer.