Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kmrcl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nyxt
kmrcl
Commits
1142016d
Commit
1142016d
authored
17 years ago
by
Kevin Rosenberg
Browse files
Options
Downloads
Plain Diff
fix conflicts
parents
373a64e9
bfcfbf0f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
ChangeLog
+11
-2
11 additions, 2 deletions
ChangeLog
byte-stream.lisp
+16
-15
16 additions, 15 deletions
byte-stream.lisp
datetime.lisp
+1
-1
1 addition, 1 deletion
datetime.lisp
debian/changelog
+12
-0
12 additions, 0 deletions
debian/changelog
with
40 additions
and
18 deletions
ChangeLog
+
11
−
2
View file @
1142016d
28 J
u
n 2008 Kevin Rosenberg <kevin@rosenberg.net>
* Version 1.9
6
28 J
a
n 2008 Kevin Rosenberg <kevin@rosenberg.net>
* Version 1.9
8
* {datetime,strings,tests}.lisp: Add remove-char-string
18 Sep 2007 Kevin Rosenberg <kevin@rosenberg.net>
* Version 1.97
* datetime.lisp: Improve output format for date-string
10 Sep 2007 Kevin Rosenberg <kevin@rosenberg.net>
* Version 1.96
* byte-stream.lisp: Use without-package-locks as suggested
by Daniel Gackle.
01 Jun 2007 Kevin Rosenberg <kevin@rosenberg.net>
* Version 1.95
* {datetime,package}.lisp: Add day-of-week and pretty-date-ut
...
...
This diff is collapsed.
Click to expand it.
byte-stream.lisp
+
16
−
15
View file @
1142016d
...
...
@@ -241,21 +241,22 @@ Make-Byte-Array-Output-Stream since the last call to this function."
(
replace
result
(
slot-value
stream
'excl::buffer
))
result
))
(
defmethod
excl:device-extend
((
stream
extendable-buffer-output-stream
)
need
action
)
(
declare
(
ignore
action
))
(
let*
((
len
(
file-position
stream
))
(
new-len
(
max
(
+
len
need
)
(
*
2
len
)))
(
old-buf
(
slot-value
stream
'excl::buffer
))
(
new-buf
(
make-array
new-len
:element-type
'
(
unsigned-byte
8
))))
(
declare
(
fixnum
len
)
(
optimize
(
speed
3
)
(
safety
0
)))
(
dotimes
(
i
len
)
(
setf
(
aref
new-buf
i
)
(
aref
old-buf
i
)))
(
setf
(
slot-value
stream
'excl::buffer
)
new-buf
)
(
setf
(
slot-value
stream
'excl::buffer-ptr
)
new-len
)
)
t
)
(
excl::without-package-locks
(
defmethod
excl:device-extend
((
stream
extendable-buffer-output-stream
)
need
action
)
(
declare
(
ignore
action
))
(
let*
((
len
(
file-position
stream
))
(
new-len
(
max
(
+
len
need
)
(
*
2
len
)))
(
old-buf
(
slot-value
stream
'excl::buffer
))
(
new-buf
(
make-array
new-len
:element-type
'
(
unsigned-byte
8
))))
(
declare
(
fixnum
len
)
(
optimize
(
speed
3
)
(
safety
0
)))
(
dotimes
(
i
len
)
(
setf
(
aref
new-buf
i
)
(
aref
old-buf
i
)))
(
setf
(
slot-value
stream
'excl::buffer
)
new-buf
)
(
setf
(
slot-value
stream
'excl::buffer-ptr
)
new-len
)
)
t
))
)
...
...
This diff is collapsed.
Click to expand it.
datetime.lisp
+
1
−
1
View file @
1142016d
...
...
@@ -45,7 +45,7 @@
(
multiple-value-bind
(
sec
min
hr
day
mon
year
dow
daylight-p
zone
)
(
decode-universal-time
ut
)
(
declare
(
ignore
daylight-p
zone
))
(
format
nil
"~[Mon~;Tue~;Wed~;Thu~;Fri~;Sat~;Sun~]
,
~d ~[Jan~;Feb~;Mar~;Apr~;May~;Jun~;Jul~;Aug~;Sep~;Oct~;Nov~;Dec~] ~d ~2,'0d:~2,'0d:~2,'0d"
(
format
nil
"~[Mon~;Tue~;Wed~;Thu~;Fri~;Sat~;Sun~] ~d ~[Jan~;Feb~;Mar~;Apr~;May~;Jun~;Jul~;Aug~;Sep~;Oct~;Nov~;Dec~] ~d ~2,'0d:~2,'0d:~2,'0d"
dow
day
(
1-
mon
)
...
...
This diff is collapsed.
Click to expand it.
debian/changelog
+
12
−
0
View file @
1142016d
cl-kmrcl (1.97-1) unstable; urgency=low
* New upstream
-- Kevin M. Rosenberg <kmr@debian.org> Tue, 18 Sep 2007 23:54:44 -0600
cl-kmrcl (1.96-1) unstable; urgency=low
* New upstream
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 10 Sep 2007 18:18:11 -0600
cl-kmrcl (1.95-1) unstable; urgency=low
* New upstream
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment