From a1b3902575907b445b80ef618f8f820dcf48bd0d Mon Sep 17 00:00:00 2001 From: Mohamed Barakat Date: Tue, 25 Feb 2014 17:06:29 +0100 Subject: [PATCH] use rec( ("$1") := 2 ) instead of rec( $1 := 2 ) as the latter does not work anymore From: Alexander Konovalov Subject: $ in identifiers Date: 4. Februar 2014 23:37:32 MEZ To: Mohamed Barakat Dear Mohamed, sorry for not reporting this before: actually, dollar is no longer allowed in identifiers. Would it be possible to fix this in GradedRingForHomalg? ... --- PackageInfo.g | 2 +- gap/SingularTools.gi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PackageInfo.g b/PackageInfo.g index 8bc52a3..77e8f8b 100644 --- a/PackageInfo.g +++ b/PackageInfo.g @@ -27,7 +27,7 @@ Subtitle := "A homalg based package for D-modules", ## See '?Extending: Version Numbers' in GAP help for an explanation ## of valid version numbers. For an automatic package distribution update ## you must provide a new version number even after small changes. -Version := "2014.01.08", +Version := "2014.02.04", ## Please adjust also the VERSION file in the package directory when ## changing this. diff --git a/gap/SingularTools.gi b/gap/SingularTools.gi index efa35a4..57be19a 100644 --- a/gap/SingularTools.gi +++ b/gap/SingularTools.gi @@ -22,7 +22,7 @@ InstallValue( D_ModulesMacrosForSingular, _Identifier := "D-Modules", - $D_Modules_init := "\n\ + ("$D_Modules_init") := "\n\ LIB \"bfun.lib\";\n\ \n\n",