Skip to content

Commit

Permalink
Rename tbl-append to add-row
Browse files Browse the repository at this point in the history
  • Loading branch information
poiuj committed Jul 6, 2013
1 parent ccf564f commit 0fe872f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.lsp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defpackage text-table
(:use common-lisp)
(:nicknames txt-tbl)
(:export tbl-append print-table parse parse-file))
(:export add-row print-table parse parse-file))
4 changes: 2 additions & 2 deletions text-table.lsp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
;; table -> (title row row ... row)
;; title, row -> #(element element ... element)

(defun tbl-append (row tbl)
"Appends row to the table"
(defun add-row (row tbl)
"Adds row to the table"
(declare (array row)
(list tbl))

Expand Down

0 comments on commit 0fe872f

Please sign in to comment.