Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
abcl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abcl
abcl
Commits
57b0756a
Commit
57b0756a
authored
Feb 08, 2010
by
mevenson@1c010e3e-69d0-11dd-93a8-456734b0d56f
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct svn:eol-style and svn:keywords.
parent
4c6844b7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
57 additions
and
57 deletions
+57
-57
src/org/armedbear/lisp/JavaClass.java
src/org/armedbear/lisp/JavaClass.java
+1
-1
src/org/armedbear/lisp/LispInteger.java
src/org/armedbear/lisp/LispInteger.java
+54
-54
src/org/armedbear/lisp/asdf-abcl.lisp
src/org/armedbear/lisp/asdf-abcl.lisp
+1
-1
src/org/armedbear/lisp/unzip.java
src/org/armedbear/lisp/unzip.java
+1
-1
No files found.
src/org/armedbear/lisp/JavaClass.java
View file @
57b0756a
...
...
@@ -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
...
...
src/org/armedbear/lisp/LispInteger.java
View file @
57b0756a
/*
* 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
);
}
}
src/org/armedbear/lisp/asdf-abcl.lisp
View file @
57b0756a
;;; 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
...
...
src/org/armedbear/lisp/unzip.java
View file @
57b0756a
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment