removed unused function
parent
081392eb63
commit
45f8c22e1a
|
@ -6,9 +6,9 @@
|
||||||
|
|
||||||
(define messages
|
(define messages
|
||||||
(hash
|
(hash
|
||||||
'show-help
|
'show-help (string-append
|
||||||
(string-append
|
config:initialize-command
|
||||||
config:initialize-command ":\n"
|
" - "
|
||||||
"initialize a file in "
|
"initialize a file in "
|
||||||
config:program-path
|
config:program-path
|
||||||
config:program-directory
|
config:program-directory
|
||||||
|
|
7
util.rkt
7
util.rkt
|
@ -33,9 +33,6 @@
|
||||||
(define (display-hash-ref hash-list key)
|
(define (display-hash-ref hash-list key)
|
||||||
(display (hash-ref hash-list key)))
|
(display (hash-ref hash-list key)))
|
||||||
|
|
||||||
(define (d-vector-ref args key)
|
|
||||||
(display (vector-ref args key)))
|
|
||||||
|
|
||||||
(define (file->string-list config:path-to-file)
|
(define (file->string-list config:path-to-file)
|
||||||
(let ([todo-list (file:file->lines config:path-to-file
|
(let ([todo-list (file:file->lines config:path-to-file
|
||||||
#:mode 'text
|
#:mode 'text
|
||||||
|
@ -54,7 +51,9 @@
|
||||||
|
|
||||||
(define (prefix-with-number lst)
|
(define (prefix-with-number lst)
|
||||||
(map string-append
|
(map string-append
|
||||||
(map number->string (list:rest (list:range (length lst))))
|
(map number->string
|
||||||
|
(list:rest
|
||||||
|
(list:range (length lst))))
|
||||||
(list:rest lst)))
|
(list:rest lst)))
|
||||||
|
|
||||||
(define (prefix-with-period lst)
|
(define (prefix-with-period lst)
|
||||||
|
|
Loading…
Reference in New Issue