Skip to content

Commit dbc9071

Browse files
committed
fixup compilation issues with +BUFFER-SIZE+
Thanks to Faré for finding the issue.
1 parent d04564d commit dbc9071

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

diff.asd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
(:file "diff" :depends-on ("package"))
1212
(:file "patch" :depends-on ("diff"))
1313
(:file "vdelta" :depends-on ("package"))
14-
(:file "svndiff" :depends-on ("package"))
14+
(:file "svndiff" :depends-on ("package" "vdelta"))
1515
(:static-file "README")
1616
(:static-file "TODO")
1717
(:static-file "NEWS")

svndiff.lisp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,6 @@ which is a list of SVNDIFF-WINDOWs."
172172

173173
;;; high level driver for the whole shebang
174174

175-
(defconstant +buffer-size+ 1024)
176-
177175
(defun compare-files (source-filename target-filename)
178176
"Return a list of svndiff windows describing the differences between
179177
SOURCE-FILENAME and TARGET-FILENAME."

vdelta.lisp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
(in-package :diff)
44

5+
(defconstant +buffer-size+ 1024)
6+
57
(deftype op-kind () '(member :copy-target :copy-source :new-data))
68
(deftype bytebuf () '(simple-array (unsigned-byte 8) (*)))
79

0 commit comments

Comments
 (0)