Changeset 4128
- Timestamp:
- 09/29/03 16:16:57 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Primitives.java
r4125 r4128 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Primitives.java,v 1.45 3 2003-09-29 14:25:40piso Exp $5 * $Id: Primitives.java,v 1.454 2003-09-29 16:16:57 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 3616 3616 }; 3617 3617 3618 private static final Primitive1 CHAR_NAME = new Primitive1("char-name") { 3618 private static final Primitive1 CHAR_NAME = new Primitive1("char-name") 3619 { 3619 3620 public LispObject execute(LispObject arg) throws ConditionThrowable 3620 3621 { … … 3637 3638 name = "Page"; 3638 3639 break; 3640 case '\b': 3641 name = "Backspace"; 3642 break; 3639 3643 default: 3640 3644 break; … … 3644 3648 }; 3645 3649 3646 private static final Primitive DIGIT_CHAR = new Primitive("digit-char") { 3650 private static final Primitive DIGIT_CHAR = new Primitive("digit-char") 3651 { 3647 3652 public LispObject execute(LispObject[] args) throws ConditionThrowable 3648 3653 { … … 3668 3673 3669 3674 private static final Primitive1 _CALL_COUNT = 3670 new Primitive1("%call-count", PACKAGE_SYS, false) { 3675 new Primitive1("%call-count", PACKAGE_SYS, false) 3676 { 3671 3677 public LispObject execute(LispObject arg) throws ConditionThrowable 3672 3678 { … … 3676 3682 3677 3683 private static final Primitive2 _SET_CALL_COUNT = 3678 new Primitive2("%set-call-count", PACKAGE_SYS, false) { 3684 new Primitive2("%set-call-count", PACKAGE_SYS, false) 3685 { 3679 3686 public LispObject execute(LispObject first, LispObject second) 3680 3687 throws ConditionThrowable
Note: See TracChangeset
for help on using the changeset viewer.