gnucash maint: [html-table] fix copy-and-paste error in f9b3b105d

Christopher Lam clam at code.gnucash.org
Tue Jul 14 13:00:51 EDT 2020


Updated	 via  https://github.com/Gnucash/gnucash/commit/996115b9 (commit)
	from  https://github.com/Gnucash/gnucash/commit/00bbd326 (commit)



commit 996115b9049aab33065b763e2368e416d93367f7
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Tue Jul 14 21:21:12 2020 +0800

    [html-table] fix copy-and-paste error in f9b3b105d

diff --git a/gnucash/report/html-table.scm b/gnucash/report/html-table.scm
index 9b9aa49d8..40e12d7ec 100644
--- a/gnucash/report/html-table.scm
+++ b/gnucash/report/html-table.scm
@@ -78,24 +78,24 @@
 (define-record-type <html-table-cell>
   (make-html-table-cell rowspan colspan tag data style)
   html-table-cell?
-  (rowspan html-table-rowspan html-table-set-rowspan!)
-  (colspan html-table-colspan html-table-set-colspan!)
-  (tag html-table-tag html-table-set-tag!)
-  (data html-table-data html-table-set-data!)
-  (style html-table-style html-table-set-style!))
+  (rowspan html-table-cell-rowspan html-table-cell-set-rowspan!)
+  (colspan html-table-cell-colspan html-table-cell-set-colspan!)
+  (tag html-table-cell-tag html-table-cell-set-tag!)
+  (data html-table-cell-data html-table-cell-set-data!)
+  (style html-table-cell-style html-table-cell-set-style!))
 
 (define gnc:make-html-table-cell-internal make-html-table-cell)
 (define gnc:html-table-cell? html-table-cell?)
-(define gnc:html-table-cell-rowspan html-table-rowspan)
-(define gnc:html-table-cell-set-rowspan! html-table-set-rowspan!)
-(define gnc:html-table-cell-colspan html-table-colspan)
-(define gnc:html-table-cell-set-colspan! html-table-set-colspan!)
-(define gnc:html-table-cell-tag html-table-tag)
-(define gnc:html-table-cell-set-tag! html-table-set-tag!)
-(define gnc:html-table-cell-data html-table-data)
-(define gnc:html-table-cell-set-data-internal! html-table-set-data!)
-(define gnc:html-table-cell-style html-table-style)
-(define gnc:html-table-cell-set-style-internal! html-table-set-style!)
+(define gnc:html-table-cell-rowspan html-table-cell-rowspan)
+(define gnc:html-table-cell-set-rowspan! html-table-cell-set-rowspan!)
+(define gnc:html-table-cell-colspan html-table-cell-colspan)
+(define gnc:html-table-cell-set-colspan! html-table-cell-set-colspan!)
+(define gnc:html-table-cell-tag html-table-cell-tag)
+(define gnc:html-table-cell-set-tag! html-table-cell-set-tag!)
+(define gnc:html-table-cell-data html-table-cell-data)
+(define gnc:html-table-cell-set-data-internal! html-table-cell-set-data!)
+(define gnc:html-table-cell-style html-table-cell-style)
+(define gnc:html-table-cell-set-style-internal! html-table-cell-set-style!)
 
 (define (gnc:make-html-table-cell . objects)
   (gnc:make-html-table-cell-internal 1 1 "td" objects 



Summary of changes:
 gnucash/report/html-table.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)



More information about the gnucash-changes mailing list