-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.lisp
43 lines (36 loc) · 1023 Bytes
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
;;;; package.lisp
(defpackage :diff
(:use :cl)
(:export #:*diff-context-lines*
#:generate-diff
#:generate-seq-diff
#:unified-diff #:context-diff
#:apply-seq-window
#:apply-seq-diff
#:apply-seq-patch
#:apply-patch
#:render-diff
#:render-diff-window
#:format-diff
#:format-diff-string
#:diff
#:original-pathname
#:modified-pathname
#:diff-window-class
#:diff-windows
#:diff-window
#:original-start-line
#:original-length
#:modified-start-line
#:modified-length
#:window-chunks
#:chunk-kind
#:chunk-lines
#:compute-raw-diff
#:compute-raw-seq-diff
#:common-diff-region
#:modified-diff-region
#:original-start
#:original-length
#:modified-start
#:modified-length))