r19310 - gnucash/trunk/src/report/standard-reports - Fix erroneous quotation in scheme string of last commit

Christian Stimming cstim at code.gnucash.org
Mon Jun 28 10:56:12 EDT 2010


Author: cstim
Date: 2010-06-28 10:56:12 -0400 (Mon, 28 Jun 2010)
New Revision: 19310
Trac: http://svn.gnucash.org/trac/changeset/19310

Modified:
   gnucash/trunk/src/report/standard-reports/standard-reports.scm
Log:
Fix erroneous quotation in scheme string of last commit

Modified: gnucash/trunk/src/report/standard-reports/standard-reports.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/standard-reports.scm	2010-06-27 18:56:56 UTC (rev 19309)
+++ gnucash/trunk/src/report/standard-reports/standard-reports.scm	2010-06-28 14:56:12 UTC (rev 19310)
@@ -76,7 +76,7 @@
 ;;   list of files in the directory
 
 (define (directory-files dir)
-  (let ((fname-regexp (make-regexp "\.scm$")) ;; Regexp that matches the desired filenames
+  (let ((fname-regexp (make-regexp "\\.scm$")) ;; Regexp that matches the desired filenames
         (dir-stream (opendir dir)))
     (let loop ((fname (readdir dir-stream))
 	               (acc '())



More information about the gnucash-changes mailing list