[armedbear-cvs] r12429 - trunk/abcl/src/org/armedbear/lisp

Mark Evenson mevenson at common-lisp.net
Mon Feb 8 07:43:41 UTC 2010


Author: mevenson
Date: Mon Feb  8 02:43:38 2010
New Revision: 12429

Log:
Correct svn:eol-style and svn:keywords.


Modified:
   trunk/abcl/src/org/armedbear/lisp/CharHashMap.java   (props changed)
   trunk/abcl/src/org/armedbear/lisp/JavaClass.java   (contents, props changed)
   trunk/abcl/src/org/armedbear/lisp/LICENSE   (props changed)
   trunk/abcl/src/org/armedbear/lisp/LispInteger.java   (contents, props changed)
   trunk/abcl/src/org/armedbear/lisp/asdf-abcl.lisp   (contents, props changed)
   trunk/abcl/src/org/armedbear/lisp/unzip.java   (contents, props changed)

Modified: trunk/abcl/src/org/armedbear/lisp/JavaClass.java
==============================================================================
--- trunk/abcl/src/org/armedbear/lisp/JavaClass.java	(original)
+++ trunk/abcl/src/org/armedbear/lisp/JavaClass.java	Mon Feb  8 02:43:38 2010
@@ -2,7 +2,7 @@
  * BuiltInClass.java
  *
  * Copyright (C) 2003-2007 Peter Graves
- * $Id: BuiltInClass.java 11297 2008-08-31 13:26:45Z ehuelsmann $
+ * $Id$
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

Modified: trunk/abcl/src/org/armedbear/lisp/LispInteger.java
==============================================================================
--- trunk/abcl/src/org/armedbear/lisp/LispInteger.java	(original)
+++ trunk/abcl/src/org/armedbear/lisp/LispInteger.java	Mon Feb  8 02:43:38 2010
@@ -1,54 +1,54 @@
-/*
- * LispInteger.java
- *
- * Copyright (C) 2003-2007 Peter Graves
- * $Id: Bignum.java 11573 2009-01-21 22:14:47Z ehuelsmann $
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
- *
- * As a special exception, the copyright holders of this library give you
- * permission to link this library with independent modules to produce an
- * executable, regardless of the license terms of these independent
- * modules, and to copy and distribute the resulting executable under
- * terms of your choice, provided that you also meet, for each linked
- * independent module, the terms and conditions of the license of that
- * module.  An independent module is a module which is not derived from
- * or based on this library.  If you modify this library, you may extend
- * this exception to your version of the library, but you are not
- * obligated to do so.  If you do not wish to do so, delete this
- * exception statement from your version.
- */
-
-package org.armedbear.lisp;
-
-/** This class merely serves as the super class for
- * Fixnum and Bignum
- */
-public class LispInteger extends LispObject
-{
-
-  public static LispInteger getInstance(long l) {
-      if (Integer.MIN_VALUE <= l && l <= Integer.MAX_VALUE)
-          return Fixnum.getInstance((int)l);
-      else
-          return Bignum.getInstance(l);
-  }
-
-  public static LispInteger getInstance(int i) {
-      return Fixnum.getInstance(i);
-  }
-
-
-}
+/*
+ * LispInteger.java
+ *
+ * Copyright (C) 2003-2007 Peter Graves
+ * $Id$
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *
+ * As a special exception, the copyright holders of this library give you
+ * permission to link this library with independent modules to produce an
+ * executable, regardless of the license terms of these independent
+ * modules, and to copy and distribute the resulting executable under
+ * terms of your choice, provided that you also meet, for each linked
+ * independent module, the terms and conditions of the license of that
+ * module.  An independent module is a module which is not derived from
+ * or based on this library.  If you modify this library, you may extend
+ * this exception to your version of the library, but you are not
+ * obligated to do so.  If you do not wish to do so, delete this
+ * exception statement from your version.
+ */
+
+package org.armedbear.lisp;
+
+/** This class merely serves as the super class for
+ * Fixnum and Bignum
+ */
+public class LispInteger extends LispObject
+{
+
+  public static LispInteger getInstance(long l) {
+      if (Integer.MIN_VALUE <= l && l <= Integer.MAX_VALUE)
+          return Fixnum.getInstance((int)l);
+      else
+          return Bignum.getInstance(l);
+  }
+
+  public static LispInteger getInstance(int i) {
+      return Fixnum.getInstance(i);
+  }
+
+
+}

Modified: trunk/abcl/src/org/armedbear/lisp/asdf-abcl.lisp
==============================================================================
--- trunk/abcl/src/org/armedbear/lisp/asdf-abcl.lisp	(original)
+++ trunk/abcl/src/org/armedbear/lisp/asdf-abcl.lisp	Mon Feb  8 02:43:38 2010
@@ -1,7 +1,7 @@
 ;;; asdf-abcl.lisp
 ;;;
 ;;; Copyright (C) 2010 Mark Evenson
-;;; $Id: package.lisp 12418 2010-02-05 15:41:42Z mevenson $
+;;; $Id$
 ;;;
 ;;; This program is free software; you can redistribute it and/or
 ;;; modify it under the terms of the GNU General Public License

Modified: trunk/abcl/src/org/armedbear/lisp/unzip.java
==============================================================================
--- trunk/abcl/src/org/armedbear/lisp/unzip.java	(original)
+++ trunk/abcl/src/org/armedbear/lisp/unzip.java	Mon Feb  8 02:43:38 2010
@@ -2,7 +2,7 @@
  * unzip.java
  *
  * Copyright (C) 2010 Mark Evenson
- * $Id: unzip.java 12288 2009-11-29 22:00:12Z vvoutilainen $
+ * $Id$
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License




More information about the armedbear-cvs mailing list