[Commit] nickle ChangeLog, 1.144, 1.145 Makefile.am, 1.66, 1.67 scanf.5c, 1.21, 1.22

Keith Packard commit at keithp.com
Sat Dec 24 10:36:38 PST 2005


Committed by: keithp

Update of /local/src/CVS/nickle
In directory home.keithp.com:/tmp/cvs-serv18764

Modified Files:
	ChangeLog Makefile.am scanf.5c 
Log Message:
2005-12-24  Keith Packard  <keithp at keithp.com>

	* Makefile.am:
	Use rpmbuild instead of rpm to build rpms.
	
	* scanf.5c:
	Permit {} in numbers to allow exact rational input


Index: ChangeLog
===================================================================
RCS file: /local/src/CVS/nickle/ChangeLog,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -d -r1.144 -r1.145
--- ChangeLog	24 Dec 2005 07:53:39 -0000	1.144
+++ ChangeLog	24 Dec 2005 18:36:35 -0000	1.145
@@ -1,3 +1,11 @@
+2005-12-24  Keith Packard  <keithp at keithp.com>
+
+	* Makefile.am:
+	Use rpmbuild instead of rpm to build rpms.
+	
+	* scanf.5c:
+	Permit {} in numbers to allow exact rational input
+
 2005-12-23  Bart Massey <bart at cs.pdx.edu>
 	
         * parse-args.5c:

Index: Makefile.am
===================================================================
RCS file: /local/src/CVS/nickle/Makefile.am,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- Makefile.am	20 Nov 2005 08:49:33 -0000	1.66
+++ Makefile.am	24 Dec 2005 18:36:35 -0000	1.67
@@ -108,7 +108,7 @@
 rpm: dist-gzip nickle.spec
 	mkdir -p $(RPMDIR)/$(PACKAGE)-$(VERSION)
 	cp $(PACKAGE)-$(VERSION).tar.gz $(RPMDIR)/$(PACKAGE)-$(VERSION)
-	rpm -ba nickle.spec
+	rpmbuild -ba nickle.spec
 
 RELEASE_FILES = \
 	$(PACKAGE)-$(VERSION).tar.gz \

Index: scanf.5c
===================================================================
RCS file: /local/src/CVS/nickle/scanf.5c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- scanf.5c	23 Dec 2004 22:07:16 -0000	1.21
+++ scanf.5c	24 Dec 2005 18:36:35 -0000	1.22
@@ -67,6 +67,8 @@
 		return true;
 	    if (c == '.')
 		return true;
+	    if (c == '{' || c == '}')
+		return true;
 	    return false;
 	}
 



More information about the Commit mailing list