[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: gnet-spice-sdb.scm
User: cnieves
Date: 06/04/11 14:34:30
Modified: . gnet-spice-sdb.scm
Log:
Changed the .END and .ENDS to lowercase. This fixes bug 1442912.
Revision Changes Path
1.19 +5 -3 eda/geda/devel/gnetlist/scheme/gnet-spice-sdb.scm
(In the diff below, changes in quantity of whitespace are not shown.)
Index: gnet-spice-sdb.scm
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gnetlist/scheme/gnet-spice-sdb.scm,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- gnet-spice-sdb.scm 10 Mar 2006 13:51:33 -0000 1.18
+++ gnet-spice-sdb.scm 11 Apr 2006 18:34:30 -0000 1.19
@@ -1,4 +1,4 @@
-;;; $Id: gnet-spice-sdb.scm,v 1.18 2006/03/10 13:51:33 sdb Exp $
+;;; $Id: gnet-spice-sdb.scm,v 1.19 2006/04/11 18:34:30 cnieves Exp $
;;;
;;; gEDA - GNU Electronic Design Automation
;;; gnetlist - GNU Netlist
@@ -82,6 +82,8 @@
;; than P9 were sorted incorrectly (as strings). Now they are sorted
;; as numbers.
;; 3.10.2006 -- Added "m" attribute to PMOS and NMOS per request of Peter Kaiser.
+;; 4.11.2006 -- Changed the .END and .ENDS cards to lowercase.
+;; This fixes bug 1442912. Carlos Nieves Onega.
;;**********************************************************************************
;;
;; Organization of gnet-spice-sdb.scm file:
@@ -1860,10 +1862,10 @@
;;
(if (not (string=? schematic-type "normal schematic"))
(begin
- (spice-sdb:write-bottom-footer (string-append ".ENDS " model-name) port)
+ (spice-sdb:write-bottom-footer (string-append ".ends " model-name) port)
(display "*******************************\n" port)
)
- (spice-sdb:write-bottom-footer ".END" port)
+ (spice-sdb:write-bottom-footer ".end" port)
)